2005-12-01 00:53:12 -05:00
|
|
|
IN: help
|
2006-01-21 02:37:39 -05:00
|
|
|
USING: arrays hashtables io kernel namespaces ;
|
|
|
|
|
|
|
|
SYMBOL: last-block
|
2005-12-01 00:53:12 -05:00
|
|
|
|
2005-12-28 20:25:17 -05:00
|
|
|
: (help) ( topic -- )
|
2005-12-19 02:12:40 -05:00
|
|
|
default-style [
|
2006-01-21 02:37:39 -05:00
|
|
|
last-block on article-content print-element
|
|
|
|
] with-nesting* terpri ;
|
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 -- )
|
2006-01-21 02:37:39 -05:00
|
|
|
default-style [ dup article-title $heading ] with-style
|
|
|
|
(help) ;
|
2005-12-28 20:25:17 -05:00
|
|
|
|
|
|
|
: glossary ( name -- ) <term> help ;
|
2006-01-19 03:28:10 -05:00
|
|
|
|
|
|
|
: handbook ( -- ) "handbook" help ;
|
2006-03-22 02:07:21 -05:00
|
|
|
|
|
|
|
: tutorial ( -- ) "tutorial" help ;
|