aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/sdp.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/sdp.org')
-rw-r--r--org/sdp.org11
1 files changed, 5 insertions, 6 deletions
diff --git a/org/sdp.org b/org/sdp.org
index a016400..a8e8724 100644
--- a/org/sdp.org
+++ b/org/sdp.org
@@ -24,7 +24,7 @@ struct Version {
int minor;
int patch;
}
-enum ver = Version(0, 9, 2);
+enum ver = Version(0, 9, 3);
#+END_SRC
* sdp.d sisu document parser :sdp.d:
@@ -377,8 +377,7 @@ string[string][string] dochead_meta = header_make_and_meta_tuple[1];
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];
#+END_SRC
**** document section keys view
@@ -442,8 +441,7 @@ debug(checkdoc) {
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,
@@ -460,6 +458,7 @@ debug(checkdoc) {
output.hub(
doc_ao_contents,
document_section_keys_sequenced,
+ doc_html_segnames,
dochead_make,
dochead_meta,
fn_src,
@@ -481,7 +480,7 @@ scope(exit) {
destroy(content_body);
destroy(t);
destroy(doc_ao_contents);
- destroy(doc_ao_biblio);
+ destroy(doc_html_segnames);
destroy(fn_src);
}
#+END_SRC