factor/core/multiline/multiline-docs.factor

14 lines
495 B
Factor
Raw Normal View History

USING: help.markup help.syntax strings ;
IN: multiline
2007-12-11 01:39:32 -05:00
2007-12-12 00:33:36 -05:00
HELP: parse-multiline-string
2007-12-11 17:23:56 -05:00
{ $values { "end-text" "a string delineating the end" } { "str" "the parsed string" } }
2008-09-04 22:38:23 -04:00
{ $description "Parses the input stream until the " { $snippet "end-text" } " is reached and returns the parsed text as a string." }
{ $notes "Used to implement " { $link \ \[[ } "." } ;
2008-09-04 22:38:23 -04:00
ARTICLE: "multiline" "Multiline"
"Writing new multiline parsing words:"
{ $subsections parse-multiline-string } ;
2007-12-11 17:23:56 -05:00
2008-09-04 22:38:23 -04:00
ABOUT: "multiline"