Sha256: 20f7274c409822527e581eff012a8fca6fbb4ce50388c7744b2cdbe04d3c37c4

Contents?: true

Size: 681 Bytes

Versions: 3

Compression:

Stored size: 681 Bytes

Contents

XML Comments need to be handled properly.
Note that output is kind of weird because we modify the comment in order to let REXML parse it due to https://bugs.ruby-lang.org/issues/9277.
*** Parameters: ***
{}
*** Markdown input: ***
<!--
&rsquo;
-->

<!-- declarations for <head> & <body> -->

<!-- -- is invalid -->

<!-- -- is
invalid -->

*** Output of inspect ***
md_el(:document,[md_html("<!--\n&rsquo;\n-->"),
	md_html("<!-- declarations for <head> & <body> -->"),
	md_html("<!-- - - is invalid -->"),
	md_html("<!-- - - is\ninvalid -->")])
*** Output of to_html ***
<!--
&rsquo;
-->

<!-- declarations for <head> & <body> -->

<!-- - - is invalid -->

<!-- - - is
invalid -->

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
maruku-0.7.3 spec/block_docs/xml_comments.md
maruku-0.7.2 spec/block_docs/xml_comments.md
maruku-0.7.1 spec/block_docs/xml_comments.md