Handbook
Glossary
get-article ( name -- element )
Vocabulary
fuel
.
help
Inputs
name
a
string
Outputs
element
a
string
Word description
If an article and a vocab share name, we render the vocab instead.
Definition
USING:
kernel
;
IN:
fuel.help
:
get-article
( name -- element )
dup
vocab-help-article?
[
vocab-help
]
[
article-element
]
if
;