-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
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
HTML entities not preserved #29
Comments
This is a limitation with the svelte parser atm. See sveltejs/svelte#2714 |
It seems this issue is back since version |
@Conduitry Could you please open this issue again? For example: <i data-icon="">icon</i> is formatted into: <i data-icon="">icon</i> |
@mdorda Thanks for the bug report! For next time: a new issue would have been better. The bug described in the description of this issue has been fixed; it's only in attribute values where it doesn't work. In any case, I found and fixed the issue. |
HTML entities in templates are replaced with their literal equivalents. For example
is transformed into
This can cause encoding issues with unicode entities and compile errors with
<
and>
.The text was updated successfully, but these errors were encountered: