Module | Haml::Filters::Textile |
In: |
lib/haml/filters.rb
|
Parses the filtered text with [Textile](www.textism.com/tools/textile). Only works if [RedCloth](redcloth.org) is installed.
@see Base#render
# File lib/haml/filters.rb, line 301 301: def render(text) 302: ::RedCloth.new(text).to_html(:textile) 303: end