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.

Methods

render  

Included Modules

Base

Public Instance methods

@see Base#render

[Source]

     # File lib/haml/filters.rb, line 301
301:       def render(text)
302:         ::RedCloth.new(text).to_html(:textile)
303:       end

[Validate]