Expand description
Manage xml character escapes
Enums§
- Escape
Error - Error for XML escape / unescape.
Functions§
- escape
- Escapes an
&str
and replaces all xml special characters (<
,>
,&
,'
,"
) with their corresponding xml escaped value. - partial_
escape - Escapes an
&str
and replaces xml special characters (<
,>
,&
) with their corresponding xml escaped value. - unescape
- Unescape an
&str
and replaces all xml escaped characters (&...;
) into their corresponding value. - unescape_
with - Unescape an
&str
and replaces all xml escaped characters (&...;
) into their corresponding value, using a resolver function for custom entities.