factor/library/help/help.factor

20 lines
387 B
Factor

IN: help
USING: arrays hashtables io kernel namespaces ;
SYMBOL: last-block
: (help) ( topic -- )
default-style [
last-block on article-content print-element
] with-nesting* terpri ;
DEFER: $heading
: help ( topic -- )
default-style [ dup article-title $heading ] with-style
(help) ;
: glossary ( name -- ) <term> help ;
: handbook ( -- ) "handbook" help ;