engine/lib/locomotive/liquid/filters/text.rb

16 lines
254 B
Ruby
Raw Normal View History

module Locomotive
module Liquid
module Filters
module Text
def textile(input)
RedCloth.new(input).to_html
end
end
::Liquid::Template.register_filter(Text)
end
end
end