Open
Description
Java highlighting breaks if #
is present anywhere but string literals and comments:
public class MyClass {
}
#
Java highlighting beaks if a multiline string literal is present anywhere with single or double quotes:
public class MyClass {
private string = """
multiline
""";
}
Python highlighting breaks if a block opening line is not terminated with :
:
def fn()
Scala highlighting breaks if a multiline string literal is present anywhere:
val str4 = """
multiline
""";