diff --git a/basis/html/html-docs.factor b/basis/html/html-docs.factor index 8c4b2934d0..83fe4d3a63 100644 --- a/basis/html/html-docs.factor +++ b/basis/html/html-docs.factor @@ -1,6 +1,7 @@ +USING: help.markup help.syntax strings xml.data ; IN: html -USING: help.markup help.syntax strings ; HELP: simple-page -{ $values { "title" string } { "head" "XML data" } { "body" "XML data" } } -{ $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." } ; \ No newline at end of file +{ $values { "title" string } { "head" "XML data" } { "body" "XML data" } +{ "xml" xml } } +{ $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." } ;