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
tree-sitter-html
There is problem with the attribute directives such as @class(), associated with tree-sitter-html Very likely related to the ) character;
@class()
)
Current work around is to use blade directives as the last attribute in the tag.
<div @class('test') slot="test" class="test">
As you can see it even breaks the github syntax highlighting☝️
The text was updated successfully, but these errors were encountered:
@class('test')
There is also no errors when the tag is used between two html attributes 🤔
Sorry, something went wrong.
dd31e26
fixes #11
515409d
No branches or pull requests
There is problem with the attribute directives such as
@class()
, associated withtree-sitter-html
Very likely related to the
)
character;Current work around is to use blade directives as the last attribute in the tag.
As you can see it even breaks the github syntax highlighting☝️
HTML
Blade Syntax
The text was updated successfully, but these errors were encountered: