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
If a string looks like <b>Gilbert</b> & <b>Sullivan</b>, the unescaped & will break XML parsing. The string must be escaped like this: <b>Gilbert</b> & <b>Sullivan</b>. Other characters must be escaped too, as described here. Their solution:
If a string looks like
<b>Gilbert</b> & <b>Sullivan</b>
, the unescaped&
will break XML parsing. The string must be escaped like this:<b>Gilbert</b> & <b>Sullivan</b>
. Other characters must be escaped too, as described here. Their solution:This is fine, but also somewhat slow. It would be nice to:
The text was updated successfully, but these errors were encountered: