glentities
Types
pub type EncodeMode {
Named
Hex
HTMLBody
}
Constructors
-
NamedEncode all characters that have a specified named entity using that name, except tab and newline.
-
HexEncode all characters using hex entities, except a-z, A-Z, 0-9, newline, tab, carriage return, and space.
-
HTMLBodyEncode only the necessary characters when the output target is HTML element or attribute content.
This means
&,<,>,', and".Note! Not suitable for outputting inside
<style>,<script>elements.