factor/library/help/help.factor

16 lines
361 B
Factor
Raw Normal View History

2005-12-01 00:53:12 -05:00
IN: help
USING: arrays gadgets-listener gadgets-presentations hashtables
io kernel namespaces parser sequences words ;
2005-12-01 00:53:12 -05:00
2005-12-28 20:25:17 -05:00
: (help) ( topic -- )
default-style [
2005-12-31 20:51:58 -05:00
[ article-content print-element ] with-nesting* terpri*
] with-style ;
2005-12-01 00:53:12 -05:00
2005-12-28 20:25:17 -05:00
DEFER: $heading
2005-12-01 00:53:12 -05:00
2005-12-28 20:25:17 -05:00
: help ( topic -- )
dup article-title $heading (help) ;
: glossary ( name -- ) <term> help ;