instiki/vendor/plugins/maruku/tests/unittest/olist.md
Jacques Distler 9b7b6fb805 Latest Maruku and Tweak for itex2MML 1.3.4
Instiki's LaTeX output also supports \Perp.
2008-02-29 01:30:46 -06:00

993 B

*** Parameters: *** {} *** Markdown input: *** This is a list:

  1. one
  2. two
  3. three *** Output of inspect *** md_el(:document,[ md_par(["This is a list:"]), md_el(:ol,[ md_el(:li_span,["one"],{:want_my_paragraph=>false},[]), md_el(:li_span,["two"],{:want_my_paragraph=>false},[]), md_el(:li_span,["three"],{:want_my_paragraph=>false},[]) ],{},[]) ],{},[]) *** Output of to_html ***

This is a list:

  1. one
  2. two
  3. three
*** Output of to_latex *** This is a list:

\begin{enumerate}% \item one \item two \item three

\end{enumerate} *** Output of to_md *** This is a list:

  1. one

  2. two

  3. three *** Output of to_s *** This is a list:onetwothree *** EOF ***

    OK!

*** Output of Markdown.pl ***

This is a list:

  1. one
  2. two
  3. three

*** Output of Markdown.pl (parsed) ***

This is a list:

  1. one
  2. two
  3. three