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
I think in order to do this, we’d need to know whether we’re interpolating into a possibly valid HTML entity, and if so, the ampersand needs to be escaped so that it is equivalent to:
My favorite currencies are &p${"ound"}s;.
We should also test this, which works correctly today:
My favorite currencies are ${"£s;"}.
The text was updated successfully, but these errors were encountered:
This:
should produce this:
However, it instead produces:
I think in order to do this, we’d need to know whether we’re interpolating into a possibly valid HTML entity, and if so, the ampersand needs to be escaped so that it is equivalent to:
We should also test this, which works correctly today:
The text was updated successfully, but these errors were encountered: