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
Parsing fails for {% comment %} including number within HTML tag.
{% comment %}
OSX 12.6
Python 3.10.6
curlylint 0.13.1
<div {% comment %} 1 {% endcomment %} ></div>
Should pass, similarly to this version, without a number (which passes as expected):
<div {% comment %} A {% endcomment %} ></div>
Fails with:
$ curlylint --verbose /project/template.html Identified project root as: /project Analyzing file content from stdin Files being analyzed: /project/template.html /project/template.html 2:8 Parse error: expected one of '>', 'attribute', '{#', '{%', '{{' at 2:8 parse_error
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Parsing fails for
{% comment %}
including number within HTML tag.Environment
OSX 12.6
Python 3.10.6
curlylint 0.13.1
Steps to reproduce
Expected behavior
Should pass, similarly to this version, without a number (which passes as expected):
Actual behavior
Fails with:
The text was updated successfully, but these errors were encountered: