showdown/test/functional/makehtml/cases/issues/#494.enumerated-code-blocks-are-partially-escaped-when-including-empy-lines-between-code-2.md
2022-02-25 01:06:09 +00:00

190 B

public static void main(String[] args) {

    for (int i = 0; i < 10 && true; i++) {

        System.out.println("Hello World");
    }

    // stuff here is affected as well <>&&%
}