diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2018-10-03 11:16:23 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-04-10 15:14:15 -0400 |
commit | a7321dc8c96ff0006eb79a7181db4ab416e916f3 (patch) | |
tree | a51168fcb61018db2429d9bbe024ab1624f0f764 /org/meta_abstraction.org | |
parent | 0.1.0 renamed doc-reform, doc_reform (& rad) (diff) |
naming DocReform from SiSU
Diffstat (limited to 'org/meta_abstraction.org')
-rw-r--r-- | org/meta_abstraction.org | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/org/meta_abstraction.org b/org/meta_abstraction.org index 50a0e78..54833bd 100644 --- a/org/meta_abstraction.org +++ b/org/meta_abstraction.org @@ -27,7 +27,7 @@ Process markup document, create document abstraction. metadoc_from_src.d +/ module doc_reform.meta.metadoc_from_src; -template SiSUdocAbstraction() { +template DocReformDocAbstraction() { /+ ↓ abstraction imports +/ <<abs_top_imports>> /+ ↓ abstraction mixins +/ @@ -35,7 +35,7 @@ template SiSUdocAbstraction() { /+ ↓ abstraction struct init +/ <<abs_top_init_struct>> /+ ↓ abstract marked up document +/ - auto SiSUdocAbstraction(Src,CMM,Opt,Mfst)( + auto DocReformDocAbstraction(Src,CMM,Opt,Mfst)( Src markup_sourcefile_content, CMM conf_make_meta, Opt opt_action, @@ -139,7 +139,7 @@ template SiSUdocAbstraction() { /+ ↓ abstraction functions assertions +/ <<abs_functions_assertions>> /+ abstraction functions assertions ↑ +/ -} /+ ← closed: template SiSUdocAbstraction +/ +} /+ ← closed: template DocReformDocAbstraction +/ <<template_doc_sect_keys_seq>> #+END_SRC @@ -168,7 +168,7 @@ import #+BEGIN_SRC d mixin ObjectSetter; mixin InternalMarkup; -mixin SiSUrgxInit; +mixin DocReformRgxInit; #+END_SRC *** initialize :initialize: @@ -440,8 +440,8 @@ scope(exit) { #+name: abs_init_rest #+BEGIN_SRC d -mixin SiSUrgxInitFlags; -mixin SiSUnode; +mixin DocReformRgxInitFlags; +mixin DocReformNode; auto node_para_int_ = node_metadata_para_int; auto node_para_str_ = node_metadata_para_str; ObjGenericComposite comp_obj_heading_, comp_obj_para, comp_obj_toc; @@ -3431,7 +3431,7 @@ void _biblio_block_( return ref string biblio_entry_str_json, return ref string[] biblio_arr_json ) { - mixin SiSUbiblio; + mixin DocReformBiblio; auto jsn = BibJsnStr(); static auto rgx = Rgx(); if (line.matchFirst(rgx.heading_biblio)) { @@ -6684,7 +6684,7 @@ struct BookIndexReportSection { static assert(is(typeof(bookindex_unordered_hashes) == string[][string][string])); static assert(is(typeof(obj_cite_digits.on) == int)); } - mixin SiSUnode; + mixin DocReformNode; mixin InternalMarkup; static auto mkup = InlineMarkup(); string type_is; @@ -6945,7 +6945,7 @@ struct NotesSection { in { } body { - mixin SiSUnode; + mixin DocReformNode; ObjGenericComposite[] the_endnotes_section; auto endnotes_ = gathered_notes(); string type_is; |