diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-08-05 04:13:53 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | 0cdf764398b74a47744763e345b6a5a31e7bee69 (patch) | |
tree | 84eb1ab5a6be58a6b8d4ed1971d5620c1e84251c /src/sdp/output/html.d | |
parent | naming things (diff) |
m_a, composite object, attributes, rename part & an addition
- of_part renamed from use (frontmatter, body, backmatter)
- of_section added (toc, body, glossary, bibliography, bookindex, blurb)
Diffstat (limited to 'src/sdp/output/html.d')
-rw-r--r-- | src/sdp/output/html.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sdp/output/html.d b/src/sdp/output/html.d index 8903e51..b961d4c 100644 --- a/src/sdp/output/html.d +++ b/src/sdp/output/html.d @@ -25,7 +25,7 @@ template outputHTML() { foreach (part; doc_matters.keys_seq.scroll) { foreach (obj; doc_abstraction[part]) { string _txt = xhtml_format.special_characters(obj, obj.text); - switch (obj.use) { + switch (obj.of_part) { case "frontmatter": assert(part == "head" || "toc_scroll"); switch (obj.is_of) { case "para": @@ -144,7 +144,7 @@ template outputHTML() { break; default: if ((doc_matters.opt_action["debug"])) { - writeln(__FILE__, ":", __LINE__, ": ", obj.use); + writeln(__FILE__, ":", __LINE__, ": ", obj.of_part); writeln(__FILE__, ":", __LINE__, ": ", obj.is_a); writeln(__FILE__, ":", __LINE__, ": ", obj.text); } @@ -264,7 +264,7 @@ template outputHTML() { } } else { assert(part == "head" || "toc_seg" || "body" || "endnotes" || "glossary" || "bibliography" || "bookindex_seg" || "blurb" || "tail"); - switch (obj.use) { + switch (obj.of_part) { case "frontmatter": assert(part == "head" || "toc_seg"); switch (obj.is_of) { case "para": @@ -395,7 +395,7 @@ template outputHTML() { break; default: if ((doc_matters.opt_action["debug"])) { - writeln(__FILE__, ":", __LINE__, ": ", obj.use); + writeln(__FILE__, ":", __LINE__, ": ", obj.of_part); } break; } |