justfile
with multiline strings incorrectly highlighting code
#6401
Replies: 1 comment 5 replies
-
Syntax highlighting problems should be logged with the upstream grammar and not here as per the docs. If this has already been fixed in the upstream grammar, GitHub will get the fix when the next release is made. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Take this example:
Notice how everything between the
"""
on line 4 onwards is considered to be a multiline string, when it shouldn't be.This seems like a clear bug to me - the above is valid according to the
just
README, so GitHub should be highlighting only the first few lines as a string (set to the variabletest
), with the others interpreted as recipes.This also happens when you have a multiline string between single quotes (which is also valid):
Beta Was this translation helpful? Give feedback.
All reactions