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

1.4 KiB

Write a comment abouth the test here. *** Parameters: *** {} *** Markdown input: ***

  • A list item with a blockquote:

    This is a blockquote inside a list item.

  • A list item with a code block:

    <code goes here>
    

*** Output of inspect *** md_el(:document,[ md_el(:ul,[ md_el(:li,[ md_par(["A list item with a blockquote:"]), md_el(:quote,[md_par(["This is a blockquote inside a list item."])],{},[]) ],{:want_my_paragraph=>true},[]), md_el(:li,[ md_par(["A list item with a code block:"]), md_el(:code,[],{:raw_code=>""},[]) ],{:want_my_paragraph=>true},[]) ],{},[]) ],{},[]) *** Output of to_html ***

  • A list item with a blockquote:

    This is a blockquote inside a list item.

  • A list item with a code block:

    <code goes here>
*** Output of to_latex *** \begin{itemize}% \item A list item with a blockquote:

\begin{quote}% This is a blockquote inside a list item.

\end{quote}

\item A list item with a code block:

\begin{verbatim}\end{verbatim}

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

  • list item with a blockquote: This is a blockquote inside a list item.
  • list item with a code block: *** Output of to_s *** A list item with a blockquote:This is a blockquote inside a list item.A list item with a code block: