Sha256: ad00239a453e8202cb19e5ea89c6b2dabd1ccc999c7118ff39d694667cf363db
Contents?: true
Size: 501 Bytes
Versions: 5
Compression:
Stored size: 501 Bytes
Contents
A span at the beginning of a list item shouldn't cause the other list elements to be wrapped in paragraphs or remove the inline element. https://github.com/bhollis/maruku/issues/67 *** Parameters: *** {} *** Markdown input: *** - One - <del>Two</del> - Three *** Output of inspect *** md_el(:document, md_el(:ul, [ md_li("One", false), md_li(md_html("<del>Two</del>"), false), md_li("Three", false) ])) *** Output of to_html *** <ul> <li>One</li> <li><del>Two</del></li> <li>Three</li> </ul>
Version data entries
5 entries across 5 versions & 1 rubygems