with-html-entities ( quot -- ) (original) (raw)

with-html-entities ( quot -- )
HTML entities

Prev: html-entities

Vocabulary
xml.entities.html

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 ;

IN: xml.entities.html

: with-html-entities ( quot -- )
html-entities get-global swap with-entities ; inline