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
This code results in an à character normally:
<span class='icon'></span> <style> .icon::before { content: '\e0' } </style>
When compiled to a custom element, though, it comes out as e0 because the \ character isn't escaped.
\
The text was updated successfully, but these errors were encountered:
escape backslashes in CSS for custom elements - fixes #872
e83bcb0
Merge pull request #873 from sveltejs/gh-872
bcad417
escape backslashes in CSS for custom elements
Successfully merging a pull request may close this issue.
This code results in an à character normally:
When compiled to a custom element, though, it comes out as e0 because the
\
character isn't escaped.The text was updated successfully, but these errors were encountered: