#288.code-blocks-containing-xml-comments-are-not-converted-correctly-when-nested-in-list-items.html 512 B

12345678910111213141516171819
  1. <ul>
  2. <li><p>list item 1</p>
  3. <pre><code>&lt;parent&gt;
  4. &lt;child&gt;child1&lt;/child&gt;
  5. &lt;!-- This is a comment --&gt;
  6. &lt;child&gt;child2&lt;/child&gt;
  7. &lt;child&gt;some text &lt;!-- a comment --&gt;&lt;/child&gt;
  8. &lt;/parent&gt;
  9. </code></pre></li>
  10. <li><p>list item 2</p></li>
  11. </ul>
  12. <pre><code>&lt;parent&gt;
  13. &lt;child&gt;child1&lt;/child&gt;
  14. &lt;!-- This is a comment --&gt;
  15. &lt;child&gt;child2&lt;/child&gt;
  16. &lt;child&gt;some text &lt;!-- a comment --&gt;&lt;/child&gt;
  17. &lt;/parent&gt;
  18. </code></pre>