instiki/vendor/plugins/maruku/spec/block_docs/red_tests/lists8.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

752 B

Write a comment here *** Parameters: *** {} # params *** Markdown input: *** Here is a paragraph.

  • Item 1
  • Item 2
  • Item 3

*** Output of inspect *** md_el(:document,[ md_par(["Here is a paragraph."]), md_el(:ul,[ md_el(:li_span,["Item 1"],{:want_my_paragraph=>false},[]), md_el(:li_span,["Item 2"],{:want_my_paragraph=>false},[]), md_el(:li_span,["Item 3"],{:want_my_paragraph=>false},[]) ],{},[]) ],{},[]) *** Output of to_html ***

Here is a paragraph.

  • Item 1
  • Item 2
  • Item 3
*** Output of to_latex *** Here is a paragraph.
  • Item 1 * Item 2 * Item 3 *** Output of to_md *** Here is a paragraph.

-tem 1 -tem 2 -tem 3 *** Output of to_s *** Here is a paragraph.Item 1Item 2Item 3