Sha256: 6da0eb52d5754855ac0d95f63229c28b22d5710b64adc8b97ff295a1a8a9738b

Contents?: true

Size: 968 Bytes

Versions: 3

Compression:

Stored size: 968 Bytes

Contents

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

2. 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 ***
<p>This is a list:</p>

<ol>
<li>one</li>

<li>two</li>

<li>three</li>
</ol>
*** 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 ***
<p>This is a list:</p>

<ol>
<li>one</li>
<li>two</li>
<li>three</li>
</ol>

*** Output of Markdown.pl (parsed) ***
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
maruku-0.5.9 tests/unittest/olist.md
maruku-0.5.7 tests/unittest/olist.md
maruku-0.5.8 tests/unittest/olist.md