From b555d00fb5e37dab269579b8595c1e461d431511 Mon Sep 17 00:00:00 2001 From: Jon Frisby Date: Wed, 20 Feb 2013 11:39:07 -0800 Subject: [PATCH] Allow .md for markdown files. --- plugins/octopress_filters.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/octopress_filters.rb b/plugins/octopress_filters.rb index 62ee080..1436d4e 100644 --- a/plugins/octopress_filters.rb +++ b/plugins/octopress_filters.rb @@ -17,7 +17,7 @@ module Jekyll class ContentFilters < PostFilter include OctopressFilters def pre_render(post) - if post.ext.match('html|textile|markdown|haml|slim|xml') + if post.ext.match('html|textile|markdown|md|haml|slim|xml') post.content = pre_filter(post.content, post.ext) end end