Sha256: 9f9a4810c03e78928a6ab4fdb3641cfba4daac180e6a0c5abf6fc61bcfe87ecc

Contents?: true

Size: 489 Bytes

Versions: 5

Compression:

Stored size: 489 Bytes

Contents

Lists should allow newlines between items.
*** Parameters: ***
{}
*** Markdown input: ***
*   A list item



*   Another list item
*** Output of inspect ***
md_el(:document,[
	md_el(:ul,[
    md_li(md_par("A list item"), true),
    md_li(md_par("Another list item"), false)
	])
])
*** Output of to_html ***
<ul>
<li>
<p>A list item</p>
</li>
<li>
<p>Another list item</p>
</li>
</ul>
*** Output of to_latex ***
\begin{itemize}%
\item A list item


\item Another list item



\end{itemize}

Version data entries

5 entries across 5 versions & 1 rubygems

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