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
When performing an Indent XML on sublime it changed the & into a ' when doing the Indent XML.
For example <hello><test1>'</test1></hello>
Gets turned into
<hello>
<test1>'</test1>
</hello>
But <hello><test1>"</test1></hello>
becomes
<hello>
<test1>"</test1>
</hello>
I'm pretty sure that the latter is the correct behaviour. This is the same for all the other XML escape sequences, it only effects the & escape sequence
The text was updated successfully, but these errors were encountered:
Glad I'm didn't have to write this!
Adding that auto-indent also converts "%" to "%", but doesn't convert "&". If I had a setting, I'd prefer escaped characters weren't converted.
When performing an Indent XML on sublime it changed the & into a ' when doing the Indent XML.
For example
<hello><test1>'</test1></hello>
Gets turned into
But
<hello><test1>"</test1></hello>
becomes
I'm pretty sure that the latter is the correct behaviour. This is the same for all the other XML escape sequences, it only effects the & escape sequence
The text was updated successfully, but these errors were encountered: