Sha256: 2aafd8b48364e85ffb3a1daf003c50acf988e64fb4724a9e36f78dc73016118a

Contents?: true

Size: 431 Bytes

Versions: 5

Compression:

Stored size: 431 Bytes

Contents

HTML tags get chomped in list. See https://github.com/bhollis/maruku/issues/88
*** Parameters: ***
{}
*** Markdown input: ***
<span> hello </span>

1. <span> world </span>

*** Output of inspect ***
md_el(:document, [md_par(md_html("<span> hello </span>")),
        md_el(:ol, md_li(md_html("<span> world </span>"), false))
])
*** Output of to_html ***
<p><span> hello </span>
</p>
<ol>
    <li><span> world </span>
    </li>
</ol>

Version data entries

5 entries across 5 versions & 1 rubygems

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