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
For some reason I can't use HTML entities.
export default props => { return yo` <footer class="Footer"> © </footer> `; };
This just renders © instead than the © symbol.
©
Any ideas?
The text was updated successfully, but these errors were encountered:
Everything is escaped by default. You can just use © directly or unicode \u00A9. Otherwise you can use innerHTML on the element to insert unescaped HTML.
©
\u00A9
innerHTML
It escapes everything by default for security but there might be a better way to handle HTML entities without sacrificing security.
Sorry, something went wrong.
No branches or pull requests
For some reason I can't use HTML entities.
This just renders
©
instead than the © symbol.Any ideas?
The text was updated successfully, but these errors were encountered: