with-html-entities ( quot -- ) (original) (raw)
with-html-entities ( quot -- )
HTML entities
Prev: | html-entities |
---|
Inputs
quot | a quotation ( -- ) |
---|
Outputs
None
Word description
Calls the given quotation using HTML entity values.
See also
html-entities, with-entities
Definition
USING: kernel namespaces xml.entities ;
: with-html-entities ( quot -- )
html-entities get-global swap with-entities ; inline