Ensure that RedCloth is loaded when textilize filter is used. Fixes #183.
This commit is contained in:
parent
ce5a2a04e3
commit
908526455c
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue