aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/output_html.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-04-18 20:48:41 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commit69c906fc8cffc841fc33ab6f9bdeafcf1d8f3b82 (patch)
tree9c809898d0cd5221df2d13b0995671befb3111c3 /src/sdp/output_html.d
parent0.13.9 sisupod & epub3, zipped output (diff)
section keys sequencedoc-reform_v0.0.13
Diffstat (limited to 'src/sdp/output_html.d')
-rw-r--r--src/sdp/output_html.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sdp/output_html.d b/src/sdp/output_html.d
index 71faa67..431b81c 100644
--- a/src/sdp/output_html.d
+++ b/src/sdp/output_html.d
@@ -38,7 +38,7 @@ template outputHTML() {
string[] doc_html;
string[] doc;
string suffix = ".html";
- foreach (part; doc_matters.keys_seq_scroll) {
+ foreach (part; doc_matters.keys_seq.scroll) {
foreach (obj; doc_abstraction[part]) {
switch (obj.use) {
case "frontmatter":
@@ -205,7 +205,7 @@ template outputHTML() {
string segment_filename;
string[] top_level_headings = ["","","",""];
string suffix = ".html";
- foreach (part; doc_matters.keys_seq_seg) {
+ foreach (part; doc_matters.keys_seq.seg) {
foreach (obj; doc_abstraction[part]) {
if (obj.is_a == "heading") { // all headings: frontmatter, body & backmatter
switch (obj.heading_lev_markup) {