allow .mkd as a markdown extension

This commit is contained in:
Tom Preston-Werner 2010-01-08 17:26:48 -08:00
parent 52b82af6e2
commit c89d8dd0f3
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
== ==
* Bug Fixes * Bug Fixes
* Require redcloth >= 4.2.1 in tests (#92) * Require redcloth >= 4.2.1 in tests (#92)
* Minor Enhancements
* Allow .mkd as markdown extension
== 0.5.5 == 0.5.5
* Bug Fixes * Bug Fixes

View File

@ -49,7 +49,7 @@ module Jekyll
case self.ext[1..-1] case self.ext[1..-1]
when /textile/i when /textile/i
return 'textile' return 'textile'
when /markdown/i, /mkdn/i, /md/i when /markdown/i, /mkdn/i, /md/i, /mkd/i
return 'markdown' return 'markdown'
end end
return 'unknown' return 'unknown'