Sha256: db7f6a8fe3df56ea385845188729f7651a27c658679353014d6a4cab8ea272b1

Contents?: true

Size: 465 Bytes

Versions: 5

Compression:

Stored size: 465 Bytes

Contents

Nested lists shouldn't get <p> tags wrapped around elements. https://github.com/bhollis/maruku/issues/26
*** Parameters: ***
{}
*** Markdown input: ***
 -  Root
     +  Node
     +  Node
 -  Root
*** Output of inspect ***
md_el(:document, md_el(:ul, [
	md_li(["Root", md_el(:ul, [md_li("Node", false), md_li("Node", false)])], false),
	md_li("Root", false)
]))
*** Output of to_html ***
<ul>
<li>Root
<ul>
<li>Node</li>
<li>Node</li>
</ul></li>
<li>Root</li>
</ul>

Version data entries

5 entries across 5 versions & 1 rubygems

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