entities ( -- value ) (original) (raw)
entities ( -- value )
XML entities
Next: | with-entities ( entities quot -- ) |
---|
Inputs
None
Outputs
value | an assoc |
---|
Word description
A hash table from default XML entity names (like & and <) to the characters they represent. This is automatically included when parsing any XML document.
See also
with-entities
Definition
CONSTANT: entities
H{
{ "gt" 62 }
{ "lt" 60 }
{ "quot" 34 }
{ "amp" 38 }
{ "apos" 39 }
} inline