Sha256: 5b0ba0984e968083174b4fdaeec2ed6dfb4b944d7c34149955d25b12b7d03206

Contents?: true

Size: 684 Bytes

Versions: 5

Compression:

Stored size: 684 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,["one"],{:want_my_paragraph=>false},[]),
		md_el(:li,["two"],{:want_my_paragraph=>false},[]),
		md_el(:li,["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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
maruku-0.7.3 spec/block_docs/olist.md
maruku-0.7.2 spec/block_docs/olist.md
maruku-0.7.1 spec/block_docs/olist.md
maruku-0.7.0 spec/block_docs/olist.md
maruku-0.7.0.beta1 spec/block_docs/olist.md