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

253 B

  1. Code block as part of list

    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 <>&&%
    }