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 == Edge
* Bug Fixes * Bug Fixes
* Fix Rakefile 'release' task (tag pushing was missing origin) * Fix Rakefile 'release' task (tag pushing was missing origin)
* Ensure that RedCloth is loaded when textilize filter is used (#183)
== 0.6.1 == 0.6.1
* Bug Fixes * Bug Fixes

View File

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