Module Haml::Filters::Maruku
In: lib/haml/filters.rb

Parses the filtered text with [Maruku](maruku.rubyforge.org), which has some non-standard extensions to Markdown.

Methods

render  

Included Modules

Base

Public Instance methods

@see Base#render

[Source]

     # File lib/haml/filters.rb, line 340
340:       def render(text)
341:         ::Maruku.new(text).to_html
342:       end

[Validate]