showdown/test/functional/makehtml/cases/issues/#494.enumerated-code-blocks-are-partially-escaped-when-including-empy-lines-between-code.html
Estevão Soares dos Santos 2d593d91f3 fix some tests
2022-11-15 05:00:09 +00:00

14 lines
304 B
HTML

<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(&quot;Hello World&quot;);
}
// stuff here is affected as well &lt;&gt;&amp;&amp;%
}
</code></pre></li>
</ol>