Sha256: 323d5ee60db381411c3a033f4bf580f7e50bf4efcf515ea3d643159551e0ffe6

Contents?: true

Size: 530 Bytes

Versions: 5

Compression:

Stored size: 530 Bytes

Contents

Markdown should be processed trailing text after HTML
*** Parameters: ***
{}
*** Markdown input: ***
before

<!-- comment --> ------

after

<p>hello</p> *foo*

done
*** Output of inspect ***
md_el(:document, [
       md_par("before"),
       md_html("<!-- comment -->"),
       md_el(:hrule, []),
       md_par("after"),
       md_html("<p>hello</p>"),
       md_par(md_em("foo")),
       md_par("done") ])
*** Output of to_html ***
<p>before</p>
<!-- comment --><hr />

<p>after</p>
<p>hello</p>
<p><em>foo</em></p>

<p>done</p>

Version data entries

5 entries across 5 versions & 1 rubygems

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