showdown/test/functional/makehtml/cases/issues/#494.enumerated-code-blocks-are-partially-escaped-when-including-empy-lines-between-code.html

14 lines
294 B
HTML
Raw Normal View History

<ol>
<li><p>Code block as part of list</p>
<pre><code>public static void main(String[] args) {
for (int i = 0; i &lt; 10 &amp;&amp; true; i++) {
System.out.println("Hello World");
}
// stuff here is affected as well &lt;&gt;&amp;&amp;%
}
</code></pre></li>
</ol>