Ensure that RedCloth is loaded when textilize filter is used. Fixes #183.

This commit is contained in:
Tom Preston-Werner 2010-06-24 17:30:38 -07:00
parent ce5a2a04e3
commit 908526455c
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
== Edge
* Bug Fixes
* Fix Rakefile 'release' task (tag pushing was missing origin)
* Ensure that RedCloth is loaded when textilize filter is used (#183)
== 0.6.1
* Bug Fixes

View File

@ -2,7 +2,7 @@ module Jekyll
module Filters
def textilize(input)
RedCloth.new(input).to_html
TextileConverter.new.convert(input)
end
def date_to_string(date)