Sha256: 33fdc2488c03dff63a970754460f9c5bef2eaf56d6e08b342baa11a3f7dcdf2b

Contents?: true

Size: 601 Bytes

Versions: 5

Compression:

Stored size: 601 Bytes

Contents

List markers typically start at the left margin, but may be indented by up to three spaces. https://github.com/bhollis/maruku/issues/30
*** Parameters: ***
{}
*** Markdown input: ***
This is a list:

  * a list

And this:

   * still a list
*** Output of inspect ***
md_el(:document, [
	md_par("This is a list:"),
	md_el(:ul, md_el(:li, "a list", {:want_my_paragraph=>false})),
	md_par("And this:"),
	md_el(:ul, md_el(:li, "still a list", {:want_my_paragraph=>false}))
])
*** Output of to_html ***
<p>This is a list:</p>

<ul>
<li>a list</li>
</ul>

<p>And this:</p>

<ul>
<li>still a list</li>
</ul>

Version data entries

5 entries across 5 versions & 1 rubygems

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