aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2016-12-02 14:44:39 -0500
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:13 -0400
commit313ddb0ac605838eaca89054ff80a0402a8c6313 (patch)
tree960459bef8876b5e859fa15435a15ee673212a67 /src/sdp.d
parent0.9.2 backmatter: control processing, possible to omit sections (diff)
0.9.3 start work on node pointers, a way to go
Diffstat (limited to 'src/sdp.d')
-rwxr-xr-xsrc/sdp.d9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/sdp.d b/src/sdp.d
index 9f98716..8b376e6 100755
--- a/src/sdp.d
+++ b/src/sdp.d
@@ -213,8 +213,7 @@ void main(string[] args) {
auto t = abs.abstract_doc_source(content_body, dochead_make, dochead_meta, opt_action_bool);
static assert(!isTypeTuple!(t));
auto doc_ao_contents = t[0]; // head ~ toc ~ contents ~ endnotes_seg ~ glossary ~ bibliography ~ bookindex ~blurb;
- auto doc_ao_bookindex_unordered_hashes = t[1]; // redundant?
- auto doc_ao_biblio = t[2]; // redundant?
+ auto doc_html_segnames = t[1];
string[][string] document_section_keys_sequenced = [
"seg": [
"head",
@@ -266,8 +265,7 @@ void main(string[] args) {
dbg.abstract_doc_source_debugs(
doc_ao_contents,
document_section_keys_sequenced,
- doc_ao_bookindex_unordered_hashes, // redundant?
- doc_ao_biblio, // redundant?
+ doc_html_segnames,
dochead_make,
dochead_meta,
fn_src,
@@ -278,6 +276,7 @@ void main(string[] args) {
output.hub(
doc_ao_contents,
document_section_keys_sequenced,
+ doc_html_segnames,
dochead_make,
dochead_meta,
fn_src,
@@ -293,7 +292,7 @@ void main(string[] args) {
destroy(content_body);
destroy(t);
destroy(doc_ao_contents);
- destroy(doc_ao_biblio);
+ destroy(doc_html_segnames);
destroy(fn_src);
}
} else {