diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-05-05 10:41:28 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-05-05 10:41:28 -0400 | 
| commit | ae7cb63c8393bbe4b50989d3f38cf1476960478b (patch) | |
| tree | c4cd1684020ca76e77e551eed062a8c70ea6abd0 | |
| parent | regex adjust, dc update build fix required (diff) | |
org-mode file minor adjustment
| -rw-r--r-- | org/metaverse.org | 28 | ||||
| -rw-r--r-- | org/spine_build_scaffold.org | 2 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_from_src.d | 4 | 
3 files changed, 16 insertions, 18 deletions
| diff --git a/org/metaverse.org b/org/metaverse.org index 90b7c21..a6f7778 100644 --- a/org/metaverse.org +++ b/org/metaverse.org @@ -36,12 +36,12 @@ template docAbstraction() {                                                                                  /+ ↓ abstraction mixins +/    <<abs_top_mixins>>                                                                                  /+ ↓ abstraction struct init +/ -  <<abs_top_init_struct_0>> -  <<abs_top_init_struct_1>> -  <<abs_top_init_struct_2>> -  <<abs_top_init_struct_3>> -  <<abs_top_init_struct_4>> -  <<abs_top_init_struct_5>> +  <<abs_top_init_struct_enum>> +  <<abs_top_init_struct_general>> +  <<abs_top_init_generic_object_struct_heading_ancestors>> +  <<abs_top_init_generic_object_struct_dom_markup_tags>> +  <<abs_top_init_generic_object_struct_dom_collapsed_tags>> +  <<abs_top_init_ocn_emit>>    <<abs_inline_para_tag_associations>>                                                                                  /+ ↓ abstract marked up document +/    @system auto docAbstraction(CMM,Opt,Mf) ( @@ -299,7 +299,7 @@ mixin spineRgxIn;  *** initialize :initialize:  **** declare enum -#+NAME: abs_top_init_struct_0 +#+NAME: abs_top_init_struct_enum  #+BEGIN_SRC d  @safe static auto eN() {    struct _e { @@ -357,12 +357,10 @@ mixin spineRgxIn;  **** initialize general -#+NAME: abs_top_init_struct_1 +#+NAME: abs_top_init_struct_general  #+BEGIN_SRC d  /+ initialize +/ -ObjGenericComposite[] the_table_of_contents_section; -ObjGenericComposite[] the_document_head_section, the_document_body_section, the_bibliography_section, the_glossary_section, the_blurb_section; -ObjGenericComposite[] the_dom_tail_section; +ObjGenericComposite[] the_table_of_contents_section, the_document_head_section, the_document_body_section, the_bibliography_section, the_glossary_section, the_blurb_section, the_dom_tail_section;  string[string] an_object, processing;  string an_object_key;  string[] anchor_tags; @@ -449,7 +447,7 @@ enum DomTags { none, open, close, close_and_open, open_still, }  **** method heading ancestors -#+NAME: abs_top_init_struct_2 +#+NAME: abs_top_init_generic_object_struct_heading_ancestors  #+BEGIN_SRC d  @safe pure ObjGenericComposite obj_heading_ancestors()(    ObjGenericComposite  obj, @@ -508,7 +506,7 @@ enum DomTags { none, open, close, close_and_open, open_still, }  **** method dom markup tags -#+NAME: abs_top_init_struct_3 +#+NAME: abs_top_init_generic_object_struct_dom_markup_tags  #+BEGIN_SRC d  @safe pure ObjGenericComposite obj_dom_structure_set_markup_tags()(    ObjGenericComposite  obj, @@ -558,7 +556,7 @@ enum DomTags { none, open, close, close_and_open, open_still, }  **** method dom collapsed tags -#+NAME: abs_top_init_struct_4 +#+NAME: abs_top_init_generic_object_struct_dom_collapsed_tags  #+BEGIN_SRC d  @safe pure ObjGenericComposite obj_dom_set_collapsed_tags()(    ObjGenericComposite  obj, @@ -608,7 +606,7 @@ enum DomTags { none, open, close, close_and_open, open_still, }  **** method ocn emit -#+NAME: abs_top_init_struct_5 +#+NAME: abs_top_init_ocn_emit  #+BEGIN_SRC d  @safe static auto ocn_emit(int ocn_status_flag) {    return object_citation_number.ocn_emitter(ocn_status_flag); diff --git a/org/spine_build_scaffold.org b/org/spine_build_scaffold.org index 9431d96..be0bbab 100644 --- a/org/spine_build_scaffold.org +++ b/org/spine_build_scaffold.org @@ -2242,6 +2242,8 @@ echo '    - harvest (authors topics)      $SpineSRC/result/bin/spine --very-verbose --harvest --output="$SpineOUT" $SpineDOC/markup/pod/* +  - html, harvest +    $SpineSRC/result/bin/spine --verbose --dark --html --html-link-harvest --harvest --output="$SpineOUT" $SpineDOC/markup/pod/*      $SpineSRC/result/bin/spine --very-verbose --html --html-link-harvest --harvest --output="$SpineOUT" $SpineDOC/markup/pod/*    - composite command: source pod, html, epub, harvest, sqlite diff --git a/src/doc_reform/meta/metadoc_from_src.d b/src/doc_reform/meta/metadoc_from_src.d index 6f735bd..6f6b383 100644 --- a/src/doc_reform/meta/metadoc_from_src.d +++ b/src/doc_reform/meta/metadoc_from_src.d @@ -125,9 +125,7 @@ template docAbstraction() {      return _e();    }    /+ initialize +/ -  ObjGenericComposite[] the_table_of_contents_section; -  ObjGenericComposite[] the_document_head_section, the_document_body_section, the_bibliography_section, the_glossary_section, the_blurb_section; -  ObjGenericComposite[] the_dom_tail_section; +  ObjGenericComposite[] the_table_of_contents_section, the_document_head_section, the_document_body_section, the_bibliography_section, the_glossary_section, the_blurb_section, the_dom_tail_section;    string[string] an_object, processing;    string an_object_key;    string[] anchor_tags; | 
