]> gitweb.factorcode.org Git - factor.git/blob - basis/xml/entities/html/html-docs.factor
7ff83d9729ca1671e6d5e289d41117c6f926b32f
[factor.git] / basis / xml / entities / html / html-docs.factor
1 ! Copyright (C) 2005, 2009 Daniel Ehrenberg
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax xml.entities ;
4 IN: xml.entities.html
5
6 ARTICLE: "xml.entities.html" "HTML entities"
7 { $vocab-link "xml.entities.html" } " defines words for using entities defined in HTML/XHTML."
8 { $subsections
9     html-entities
10     with-html-entities
11 } ;
12
13 HELP: html-entities
14 { $description "A hash table from HTML entity names to their character values." }
15 { $see-also entities with-html-entities } ;
16
17 HELP: with-html-entities
18 { $values { "quot" "a quotation ( -- )" } }
19 { $description "Calls the given quotation using HTML entity values." }
20 { $see-also html-entities with-entities } ;