diff options
Diffstat (limited to 'src/doc_reform/meta')
| -rw-r--r-- | src/doc_reform/meta/conf_make_meta_structs.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/conf_make_meta_yaml.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/defaults.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/doc_debugs.d | 11 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_curate.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_curate_authors.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_curate_topics.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_from_src.d | 4 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_object_setter.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_show_config.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_show_make.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_show_metadata.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/metadoc_show_summary.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/package.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/rgx.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/rgx_files.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/rgx_yaml_tags.d | 3 | 
18 files changed, 23 insertions, 40 deletions
| diff --git a/src/doc_reform/meta/conf_make_meta_structs.d b/src/doc_reform/meta/conf_make_meta_structs.d index c6e7692..5c971af 100644 --- a/src/doc_reform/meta/conf_make_meta_structs.d +++ b/src/doc_reform/meta/conf_make_meta_structs.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/conf_make_meta_yaml.d b/src/doc_reform/meta/conf_make_meta_yaml.d index fa87f9c..1e48329 100644 --- a/src/doc_reform/meta/conf_make_meta_yaml.d +++ b/src/doc_reform/meta/conf_make_meta_yaml.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/defaults.d b/src/doc_reform/meta/defaults.d index 33794b7..f6b4d20 100644 --- a/src/doc_reform/meta/defaults.d +++ b/src/doc_reform/meta/defaults.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/doc_debugs.d b/src/doc_reform/meta/doc_debugs.d index 35b36e1..75cfe03 100644 --- a/src/doc_reform/meta/doc_debugs.d +++ b/src/doc_reform/meta/doc_debugs.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: @@ -55,7 +54,7 @@ module doc_reform.meta.doc_debugs;  template spineDebugs() {    import      doc_reform.meta.defaults, -    doc_reform.meta.rgx; +    doc_reform.meta.rgx_files;    import      std.algorithm,      std.array, @@ -75,9 +74,9 @@ template spineDebugs() {      const S  contents,            T  doc_matters,    ) { -    mixin spineRgxIn; +    mixin spineRgxFiles;      mixin InternalMarkup; -    static auto rgx = RgxI(); +    static auto rgx_files = RgxFiles();      auto markup = InlineMarkup();      string key;      debug(parent) { @@ -105,7 +104,7 @@ template spineDebugs() {      debug(checkdoc) {        if ((doc_matters.opt.action.debug_do)) {          debug(checkdoc) { -          if (auto mfn=match(doc_matters.src.filename, rgx.src_fn)) { +          if (auto mfn=match(doc_matters.src.filename, rgx_files.src_fn)) {              if (doc_matters.opt.action.assertions) {                switch (mfn.captures[2]) {                // live manual: diff --git a/src/doc_reform/meta/metadoc.d b/src/doc_reform/meta/metadoc.d index abaa874..cefee5b 100644 --- a/src/doc_reform/meta/metadoc.d +++ b/src/doc_reform/meta/metadoc.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_curate.d b/src/doc_reform/meta/metadoc_curate.d index 178a89e..f60aad6 100644 --- a/src/doc_reform/meta/metadoc_curate.d +++ b/src/doc_reform/meta/metadoc_curate.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_curate_authors.d b/src/doc_reform/meta/metadoc_curate_authors.d index 373b896..6ed7f44 100644 --- a/src/doc_reform/meta/metadoc_curate_authors.d +++ b/src/doc_reform/meta/metadoc_curate_authors.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_curate_topics.d b/src/doc_reform/meta/metadoc_curate_topics.d index b8d8ed4..53f8d87 100644 --- a/src/doc_reform/meta/metadoc_curate_topics.d +++ b/src/doc_reform/meta/metadoc_curate_topics.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_from_src.d b/src/doc_reform/meta/metadoc_from_src.d index 0c23101..164a0dd 100644 --- a/src/doc_reform/meta/metadoc_from_src.d +++ b/src/doc_reform/meta/metadoc_from_src.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: @@ -1312,6 +1311,7 @@ template docAbstraction() {        }      }                                                                           /+ ← srcDocLoop closed: loop markup document/text line by line +/                                                                                  /+ ↓ post loop markup document/text +/ +                                                                                /+ ↓ post loop markup document/text +/      { // EOF        comp_obj_heading_                                              = comp_obj_heading_.init;        comp_obj_heading_.metainfo.is_of_part                          = "backmatter"; diff --git a/src/doc_reform/meta/metadoc_object_setter.d b/src/doc_reform/meta/metadoc_object_setter.d index 8b01b88..ce54253 100644 --- a/src/doc_reform/meta/metadoc_object_setter.d +++ b/src/doc_reform/meta/metadoc_object_setter.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_show_config.d b/src/doc_reform/meta/metadoc_show_config.d index 382ffbf..b124660 100644 --- a/src/doc_reform/meta/metadoc_show_config.d +++ b/src/doc_reform/meta/metadoc_show_config.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_show_make.d b/src/doc_reform/meta/metadoc_show_make.d index a7c12c6..1a919d4 100644 --- a/src/doc_reform/meta/metadoc_show_make.d +++ b/src/doc_reform/meta/metadoc_show_make.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_show_metadata.d b/src/doc_reform/meta/metadoc_show_metadata.d index fbbe4f2..a8e981c 100644 --- a/src/doc_reform/meta/metadoc_show_metadata.d +++ b/src/doc_reform/meta/metadoc_show_metadata.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/metadoc_show_summary.d b/src/doc_reform/meta/metadoc_show_summary.d index 6bd4a48..2dfe06c 100644 --- a/src/doc_reform/meta/metadoc_show_summary.d +++ b/src/doc_reform/meta/metadoc_show_summary.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/package.d b/src/doc_reform/meta/package.d index 4d52077..6289154 100644 --- a/src/doc_reform/meta/package.d +++ b/src/doc_reform/meta/package.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/rgx.d b/src/doc_reform/meta/rgx.d index 1d40491..36da4e2 100644 --- a/src/doc_reform/meta/rgx.d +++ b/src/doc_reform/meta/rgx.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/rgx_files.d b/src/doc_reform/meta/rgx_files.d index f86c416..409e35c 100644 --- a/src/doc_reform/meta/rgx_files.d +++ b/src/doc_reform/meta/rgx_files.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: diff --git a/src/doc_reform/meta/rgx_yaml_tags.d b/src/doc_reform/meta/rgx_yaml_tags.d index b2a15c1..5c9fe6b 100644 --- a/src/doc_reform/meta/rgx_yaml_tags.d +++ b/src/doc_reform/meta/rgx_yaml_tags.d @@ -6,8 +6,7 @@    - Author: Ralph Amissah      [ralph.amissah@gmail.com] -  - Copyright: (C) 2015 - 2022 Ralph Amissah, All Rights -    Reserved. +  - Copyright: (C) 2015 - 2023 Ralph Amissah, All Rights Reserved.    - License: AGPL 3 or later: | 
