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

11 lines
236 B
HTML
Raw Normal View History

<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>