From 313ddb0ac605838eaca89054ff80a0402a8c6313 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Fri, 2 Dec 2016 14:44:39 -0500 Subject: 0.9.3 start work on node pointers, a way to go --- org/sdp.org | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'org/sdp.org') 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 -- cgit v1.2.3