Expand description
Manage xml character escapes
Functions
Escapes an
&str and replaces all xml special characters (<, >, &, ', ")
with their corresponding xml escaped value.Escapes an
&str and replaces xml special characters (<, >, &)
with their corresponding xml escaped value.Unescape an
&str and replaces all xml escaped characters (&...;) into
their corresponding value.Unescape an
&str and replaces all xml escaped characters (&...;) into
their corresponding value, using a resolver function for custom entities.