class RedCloth::TextileDoc

def to_html( *rules )


#=>"

And then? She fell!

"
RedCloth.new( "And then? She *fell*!" ).to_html

Generates HTML from the Textile contents.
def to_html( *rules )
  apply_rules(rules)
  to(RedCloth::Formatters::HTML)
end