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
The encapsulation for HTML is this:
<span class="tag is-rounded" data-value="[email protected]"> [email protected] <div class="delete is-small" data-tag="delete"></div> </span>
But if we use special characters, for example insert something like: "Email" <[email protected]> ... then:
"Email" <[email protected]>
<span class="tag is-rounded" data-value="" Email"="" <email@email.com="">"> "Email" <email@email.com> <div class="delete is-small" data-tag="delete"></div> </email@email.com></span>
It's completely broken! I think it needs a bit of sanitizing for input.
The text was updated successfully, but these errors were encountered:
Escape HTML in templates.
ade3916
Closes CreativeBulma#12
5978f92
e8043b7
fix(js): Escape HTML in templates
8815b91
3fb7f65
Successfully merging a pull request may close this issue.
The encapsulation for HTML is this:
But if we use special characters, for example insert something like:
"Email" <[email protected]>
... then:It's completely broken! I think it needs a bit of sanitizing for input.
The text was updated successfully, but these errors were encountered: