Sha256: 503a70ada09b2a71ed7f6ab96641fabaebe4d25b6893317ae4a7f55bba4e9a96
Contents?: true
Size: 466 Bytes
Versions: 3
Compression:
Stored size: 466 Bytes
Contents
Nesting lists should handle newlines inbetween list items. *** Parameters: *** {} # params *** Markdown input: *** * Bar * Bax * boo *** Output of inspect *** md_el(:document, md_el(:ul, [ md_li([ md_par("Bar"), md_el(:ul, [ md_li(md_par("Bax"), true), md_li(md_par("boo"), false) ], {}, []) ],true) ],{},[])) *** Output of to_html *** <ul> <li> <p>Bar</p> <ul> <li> <p>Bax</p> </li> <li> <p>boo</p> </li> </ul> </li> </ul>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
maruku-0.7.3 | spec/block_docs/lists_nested_blankline.md |
maruku-0.7.2 | spec/block_docs/lists_nested_blankline.md |
maruku-0.7.1 | spec/block_docs/lists_nested_blankline.md |