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
|
== 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
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue