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
Fix double quotes inside attribute values
Previously we were stripping double quotes and this Python::
onclick='document.querySelector("foo")'
Became this HTML::
onclick="document.querySelector(foo)"
This commit fixes it by rendering this instead::
onclick="document.querySelector("foo")"