]> gitweb.factorcode.org Git - factor.git/blob - basis/xml/entities/html/html-docs.factor
Merge branch 'master' into experimental
[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 { $subsection html-entities }
9 { $subsection with-html-entities } ;
10
11 HELP: html-entities
12 { $description "A hash table from HTML entity names to their character values." }
13 { $see-also entities with-html-entities } ;
14
15 HELP: with-html-entities
16 { $values { "quot" "a quotation ( -- )" } }
17 { $description "Calls the given quotation using HTML entity values." }
18 { $see-also html-entities with-entities } ;