Skip to content

Commit 89701e1

Browse files
committed
Merge pull request #706 from Confusion/patch-1
Fix for issue #622
2 parents a96c0c6 + 6029981 commit 89701e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/octopress_filters.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ module Jekyll
2424
class ContentFilters < PostFilter
2525
include OctopressFilters
2626
def pre_render(post)
27-
if post.ext.match('html|textile|markdown|haml|slim|xml')
27+
if post.ext.match('html|textile|markdown|md|haml|slim|xml')
2828
post.content = pre_filter(post.content)
2929
end
3030
end
3131
def post_render(post)
32-
if post.ext.match('html|textile|markdown|haml|slim|xml')
32+
if post.ext.match('html|textile|markdown|md|haml|slim|xml')
3333
post.content = post_filter(post.content)
3434
end
3535
end

0 commit comments

Comments
 (0)