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
This would break since ' is not escaped to ' as required by the XML spec. I think for attributes it generally makes sense to always use escape-string-minimal, since I don't see a situation where you'd want to be able to inject arbitrary strings into the tags attribute list.
I guess this can't really be changed now without breaking a lot of existing code depending on who already escaping its attributes, but a setting to change this behavior would be nice.
The text was updated successfully, but these errors were encountered:
Consider for example:
This would break since
'
is not escaped to'
as required by the XML spec. I think for attributes it generally makes sense to always useescape-string
-minimal, since I don't see a situation where you'd want to be able to inject arbitrary strings into the tags attribute list.I guess this can't really be changed now without breaking a lot of existing code depending on who already escaping its attributes, but a setting to change this behavior would be nice.
The text was updated successfully, but these errors were encountered: