instiki/vendor/plugins/maruku/spec/block_docs/easy.md
Jacques Distler 13a522525c REXML is dead. Long live Nokogiri.
Modify Maruku to use Nokogiri instead of REXML.
Produces a 3-fold speedup in the #to_html method.
2011-08-11 20:36:44 -05:00

444 B

Simple test for emphasis. *** Parameters: *** {} *** Markdown input: *** Hello! how are you? *** Output of inspect *** md_el(:document,[md_par([md_em(["Hello!"]), " how are ", md_strong(["you"]), "?"])],{},[]) *** Output of to_html ***

Hello! how are you?

*** Output of to_latex *** \emph{Hello!} how are \textbf{you}? *** Output of to_md *** Hello!how are you? *** Output of to_s *** Hello! how are you?