class RedCloth::TextileDoc

def to_latex( *rules )


#=> "And then? She \\textbf{fell}!\n\n"
RedCloth.new( "And then? She *fell*!" ).to_latex

Generates LaTeX from the Textile contents.
def to_latex( *rules )
  apply_rules(rules)
  to(RedCloth::Formatters::LATEX)
end