Octopress filters are now limited to html producing templating languages, Fixes #536

source
Brandon Mathis 2012-05-21 15:58:42 -05:00
parent c5e2e524f8
commit 8753a6b00c
1 changed files with 6 additions and 2 deletions

View File

@ -24,10 +24,14 @@ module Jekyll
class ContentFilters < PostFilter
include OctopressFilters
def pre_render(post)
post.content = pre_filter(post.content)
if post.ext.match('html|textile|markdown|haml|slim|xml')
post.content = pre_filter(post.content)
end
end
def post_render(post)
post.content = post_filter(post.content)
if post.ext.match('html|textile|markdown|haml|slim|xml')
post.content = post_filter(post.content)
end
end
end
end