1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-05 16:44:21 +03:00
inform7/inter/index-module/Chapter 3/Lexicon Element.w

23 lines
855 B
OpenEdge ABL
Raw Normal View History

2021-06-12 15:08:47 +03:00
[LexiconElement::] Lexicon Element.
To write the Lexicon element (Lx) in the index.
@ =
void LexiconElement::render(OUTPUT_STREAM) {
inter_tree *I = Index::get_tree();
TempLexicon::stock(I);
Index::anchor(OUT, I"LEXICON");
HTML_OPEN("p");
HTML_OPEN_WITH("span", "class=\"smaller\"");
WRITE("For instance, the description 'an unlocked door' is made "
"up from the adjective 'unlocked' and the noun 'door', both of which "
"can be found below. Property adjectives, like 'open', can be used "
"when creating things - 'In the Ballroom is an open container' is "
"allowed because 'open' is a property - but those with complicated "
"definitions, like 'empty', can only be tested during play, e.g. "
"with rules like 'Instead of taking an empty container, ...'.");
HTML_CLOSE("span");
HTML_CLOSE("p");
TempLexicon::listing(OUT, FALSE);
}