Sha256: cd6375b0200b285c08c6159255bb5bc79eed479e53f1976c1a7a0f1e941ad88d

Contents?: true

Size: 655 Bytes

Versions: 5

Compression:

Stored size: 655 Bytes

Contents

JRUBY NOKOGIRI PENDING - Maruku should nest inline-level HTML inside a paragraph
(JRuby Nokogiri is broken for empty tags: https://github.com/sparklemotion/nokogiri/issues/971)
*** Parameters: ***
{} # params
*** Markdown input: ***
One
<span></span>123

<span></span>123

<animateColor/>123

<svg></svg>
*** Output of inspect ***
md_el(:document,[
	md_par(["One ", md_html("<span></span>"), "123"]),
	md_par([md_html("<span></span>"), "123"]),
	md_par([md_html("<animateColor/>"), "123"]),
	md_html("<svg></svg>"),
],{},[])
*** Output of to_html ***
<p>One <span></span>123</p>
<p><span></span>123</p>
<p><animateColor></animateColor>123</p>
<svg></svg>

Version data entries

5 entries across 5 versions & 1 rubygems

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