]> gitweb.factorcode.org Git - factor.git/blob - basis/html/html-docs.factor
Fixes #2966
[factor.git] / basis / html / html-docs.factor
1 USING: help.markup help.syntax strings xml.data ;
2 IN: html
3
4 HELP: simple-page
5 { $values { "title" string } { "head" "XML data" } { "body" "XML data" }
6 { "xml" xml } }
7 { $description "Constructs a simple XHTML page with a " { $snippet "head" } " and " { $snippet "body" } " tag. The given XML data is spliced into the two child tags, and a title is also added to the head tag." } ;