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

863 B

Test case given by Scott.

http://rubyforge.org/tracker/index.php?func=detail&aid=8862&group_id=2795&atid=10735

a should not be indented.

*** Parameters: *** {} # params *** Markdown input: ***

  • a
    • a1
    • a2
  • b

*** Output of inspect *** md_el(:document,[ md_el(:ul,[ md_el(:li,[ "a", md_el(:ul,[ md_el(:li_span,["a1"],{:want_my_paragraph=>false},[]), md_el(:li_span,["a2"],{:want_my_paragraph=>false},[]) ],{},[]) ],{:want_my_paragraph=>true},[]), md_el(:li,[md_par(["b"])],{:want_my_paragraph=>false},[]) ],{},[]) ],{},[]) *** Output of to_html ***

  • a
    • a1
    • a2
  • b

*** Output of to_latex *** \begin{itemize}% \item a

\begin{itemize}% \item a1 \item a2

\end{itemize}

\item b

\end{itemize} *** Output of to_md *** -* a1

  • a2

*** Output of to_s *** aa1a2b