We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
~H""" <div class={foo(" ")}> </div> """
Breaks the syntax highlighting, all subsequent lines are "in" a string.
The text was updated successfully, but these errors were encountered:
Also, it seems that the highlight breaks when the code is written as such:
<div class={"class "}>
<div class={"bar #{my_func(arg1, arg2)}"}>
PS: using one arg1 works normally.
<div class={"bar #{my_func(arg1)}"}>
It looks like the space right after the comma of the first argument breaks it.
Sorry, something went wrong.
Temporary workaround: Add a space after the opening bracket.
<div class={ "class "}>
No branches or pull requests
The following code:
Breaks the syntax highlighting, all subsequent lines are "in" a string.
The text was updated successfully, but these errors were encountered: