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
In the following template, the single quote in the title attribute is converted into a double quote:
%a{ href: '#', title: "This shouldn't be a double quote" } But it is
This produces the following HTML:
<a href='#' title="This shouldn"t be a double quote">But it is</a>
As a result, the title is displayed at:
This shouldn"t be a double quote
Instead of converting ' to ", it should be converted to ' or '.
'
"
'
'
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. I'll look into it asap.
Sorry, something went wrong.
This has been fixed in Haml-Coffee, expect a new release soon.
No branches or pull requests
In the following template, the single quote in the title attribute is converted into a double quote:
This produces the following HTML:
As a result, the title is displayed at:
Instead of converting
'
to"
, it should be converted to'
or'
.The text was updated successfully, but these errors were encountered: