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