Sha256: 29d34b467c3ec59a264ebccad51edc891f365d3802f23cba22cbad7be32cd0f5

Contents?: true

Size: 973 Bytes

Versions: 10

Compression:

Stored size: 973 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) ***
<p>This is a list:</p
   ><ol>
<li>one</li
     >
<li>two</li
     >
<li>three</li
     >
</ol
 >

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
maruku-0.5.1 tests/unittest/olist.md
maruku-0.5.0 tests/unittest/olist.md
maruku-0.4.2 tests/unittest/olist.md
maruku-0.4.1 tests/unittest/olist.md
maruku-0.5.2 tests/unittest/olist.md
maruku-0.4.2.1 tests/unittest/olist.md
maruku-0.5.3 tests/unittest/olist.md
maruku-0.5.4 tests/unittest/olist.md
maruku-0.5.5 tests/unittest/olist.md
maruku-0.5.6 tests/unittest/olist.md