factor/library/help/help.factor

17 lines
528 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
: help ( topic -- )
default-style [
dup article-title $heading
article-content print-element
2005-12-19 23:18:15 -05:00
terpri*
] with-style ;
2005-12-01 00:53:12 -05:00
2005-12-01 01:09:52 -05:00
: glossary ( name -- ) <term> help ;
2005-12-01 00:53:12 -05:00
"Show word documentation" [ word? ] [ help ] \ in-browser define-command
"Show term definition" [ term? ] [ help ] \ in-browser define-default-command
"Show article" [ link? ] [ help ] \ in-browser define-default-command