You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as alluded to in #265, values that require not escaping are basically impossible to create right now. Attribute values are always escaped. You can :dangerouslySetInnerHTML... but that is on inner HTML, and not on an attribute value.
One could do :dangerouslySetInnerHTML on the parent of whatever tag you need an attribute value to not be escaped.. but you would end up having to possibly and probably un-protect a whole lot of elements.
The text was updated successfully, but these errors were encountered:
as alluded to in #265, values that require not escaping are basically impossible to create right now. Attribute values are always escaped. You can
:dangerouslySetInnerHTML
... but that is on inner HTML, and not on an attribute value.One could do
:dangerouslySetInnerHTML
on the parent of whatever tag you need an attribute value to not be escaped.. but you would end up having to possibly and probably un-protect a whole lot of elements.The text was updated successfully, but these errors were encountered: