Browse Source

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

unreleased_contents
Brandon Mathis 13 years ago
parent
commit
8753a6b00c
  1. 8
      plugins/octopress_filters.rb

8
plugins/octopress_filters.rb

@ -24,10 +24,14 @@ module Jekyll
class ContentFilters < PostFilter class ContentFilters < PostFilter
include OctopressFilters include OctopressFilters
def pre_render(post) 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 end
def post_render(post) 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 end
end end

Loading…
Cancel
Save