factor/basis/xml/entities/html/html-docs.factor

21 lines
702 B
Factor
Raw Normal View History

2009-01-21 00:54:33 -05:00
! Copyright (C) 2005, 2009 Daniel Ehrenberg
! See http://factorcode.org/license.txt for BSD license.
USING: help.markup help.syntax xml.entities ;
IN: xml.entities.html
ARTICLE: "xml.entities.html" "HTML entities"
{ $vocab-link "xml.entities.html" } " defines words for using entities defined in HTML/XHTML."
{ $subsections
html-entities
with-html-entities
} ;
2009-01-21 00:54:33 -05:00
HELP: html-entities
2009-01-29 19:25:23 -05:00
{ $description "A hash table from HTML entity names to their character values." }
2009-01-21 00:54:33 -05:00
{ $see-also entities with-html-entities } ;
HELP: with-html-entities
{ $values { "quot" "a quotation ( -- )" } }
2009-01-29 19:25:23 -05:00
{ $description "Calls the given quotation using HTML entity values." }
2009-01-21 00:54:33 -05:00
{ $see-also html-entities with-entities } ;