Open escargotprodige opened 9 years ago
Problem may be centered around include
. Syntax coloring is off for the remainder of the document after the following statement, for example:
style
include style.css
However, if an empty line is placed before the above statement, this prevents the problem.
The problem is not the include. It's the bare mixin call. This breaks
html
+head
head
title
foo
However, adding a line break after it:
html
+head
head
title
foo
or closing the parentheses:
html
+head()
head
title
foo
fixes highlighting.