19 lines
518 B
Factor
19 lines
518 B
Factor
IN: help
|
|
USING: arrays gadgets-presentations hashtables io kernel
|
|
namespaces parser sequences words ;
|
|
|
|
: help ( topic -- )
|
|
[
|
|
dup article-title $heading terpri terpri
|
|
article-content print-element terpri
|
|
] with-markup ;
|
|
|
|
: glossary ( name -- ) <term> help ;
|
|
|
|
[ word? ] "Show word documentation" [ help ] define-command
|
|
[ term? ] "Show term definition" [ help ] define-command
|
|
[ link? ] "Show article" [ help ] define-command
|
|
|
|
H{ } clone articles global set-hash
|
|
H{ } clone terms global set-hash
|