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

15 lines
448 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, localisation_dictionary *LD) {
2021-07-09 00:56:01 +03:00
IndexUtilities::anchor(OUT, I"LEXICON");
2021-06-12 15:08:47 +03:00
HTML_OPEN("p");
HTML_OPEN_WITH("span", "class=\"smaller\"");
2021-07-25 17:11:01 +03:00
Localisation::write_0(OUT, LD, I"Index.Elements.Lx.Explanation");
2021-06-12 15:08:47 +03:00
HTML_CLOSE("span");
HTML_CLOSE("p");
2021-07-17 01:25:58 +03:00
IndexLexicon::listing(OUT, InterpretIndex::get_lexicon(), FALSE, LD);
2021-06-12 15:08:47 +03:00
}