Expand description
Manage xml character escapes
Enums
- Error for XML escape / unescape.
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.