fix html help-lint

db4
Doug Coleman 2009-02-11 13:56:54 -06:00
parent 6ae2694f51
commit 31d86e300c
1 changed files with 4 additions and 3 deletions

View File

@ -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" } }
{ $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." } ;