The method below exists in the Redcloth gem.
My question is: what does the construction "to(RedCloth::Formatters::HTML)" mean? "to" isn't a method in the class, nor in the superclass (wich is String class).
Cheers. Christian.
def to_html( *rules )
apply_rules(rules)
to(RedCloth::Formatters::HTML)
end