diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2024-04-10 22:24:34 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2024-04-10 23:08:18 -0400 | 
| commit | 90873fabd7451e1dd8c4b39303906e19bdc481f7 (patch) | |
| tree | 2dbb0e41f3e9c761645c8b37dafe979a01d38d32 /org/default_regex.org | |
| parent | 0.15.0 (diff) | |
0.16.0 sisudoc (src/sisudoc sisudoc spine)
- src/sisudoc (replaces src/doc_reform)
- sisudoc spine (used more)
Diffstat (limited to 'org/default_regex.org')
| -rw-r--r-- | org/default_regex.org | 28 | 
1 files changed, 14 insertions, 14 deletions
| diff --git a/org/default_regex.org b/org/default_regex.org index bce6fa6..ffd03f1 100644 --- a/org/default_regex.org +++ b/org/default_regex.org @@ -1,5 +1,5 @@  -*- mode: org -*- -#+TITLE:       spine (doc_reform) regex defaults +#+TITLE:       sisudoc spine (doc_reform) regex defaults  #+DESCRIPTION: documents - structuring, publishing in multiple formats & search  #+FILETAGS:    :spine:regex:  #+AUTHOR:      Ralph Amissah @@ -34,14 +34,14 @@ https://dlang.org/phobos/std_regex.html  ** _module template_ :module: -#+HEADER: :tangle "../src/doc_reform/meta/rgx.d" +#+HEADER: :tangle "../src/sisudoc/meta/rgx.d"  #+HEADER: :noweb yes  #+BEGIN_SRC d  <<doc_header_including_copyright_and_license>>  /++    regex: regular expressions used in sisu document parser  +/ -module doc_reform.meta.rgx; +module sisudoc.meta.rgx;  @safe:  static template spineRgxIn() {    static struct RgxI { @@ -453,14 +453,14 @@ https://dlang.org/phobos/std_regex.html  ** _module template_ :module:output: -#+HEADER: :tangle "../src/doc_reform/io_out/rgx.d" +#+HEADER: :tangle "../src/sisudoc/io_out/rgx.d"  #+HEADER: :noweb yes  #+BEGIN_SRC d  <<doc_header_including_copyright_and_license>>  /++    regex: regular expressions used in sisu document parser  +/ -module doc_reform.io_out.rgx; +module sisudoc.io_out.rgx;  @safe:  static template spineRgxOut() {    static struct RgxO { @@ -658,14 +658,14 @@ static table_delimiter_row                      = ctRegex!("[ ]*\n", "mg");  ** files filename (& path) (including insert file) :insert:file:path:filename: -#+HEADER: :tangle "../src/doc_reform/meta/rgx_files.d" +#+HEADER: :tangle "../src/sisudoc/meta/rgx_files.d"  #+HEADER: :noweb yes  #+BEGIN_SRC d  <<doc_header_including_copyright_and_license>>  /++    regex: regular expressions used in sisu document parser  +/ -module doc_reform.meta.rgx_files; +module sisudoc.meta.rgx_files;  @safe:  static template spineRgxFiles() {    static struct RgxFiles { @@ -692,14 +692,14 @@ static src_formalised_file_path_parts           = ctRegex!(`(?P<pth>(?:[/a-zA-Z0  ** _module template yaml tags -#+HEADER: :tangle "../src/doc_reform/meta/rgx_yaml_tags.d" +#+HEADER: :tangle "../src/sisudoc/meta/rgx_yaml_tags.d"  #+HEADER: :noweb yes  #+BEGIN_SRC d  <<doc_header_including_copyright_and_license>>  /++    regex: regular expressions used in sisu document parser  +/ -module doc_reform.meta.rgx_yaml; +module sisudoc.meta.rgx_yaml;  @safe:  static template spineRgxYamlTags() {    static struct RgxYaml { @@ -719,14 +719,14 @@ static yaml_tag_is_seq                          = ctRegex!(`:seq$`);  ** special characters  *** xhtml special characters template -#+HEADER: :tangle "../src/doc_reform/io_out/rgx_xhtml.d" +#+HEADER: :tangle "../src/sisudoc/io_out/rgx_xhtml.d"  #+HEADER: :noweb yes  #+BEGIN_SRC d  <<doc_header_including_copyright_and_license>>  /++    regex: regular expressions used in sisu document parser  +/ -module doc_reform.io_out.rgx_xhtml; +module sisudoc.io_out.rgx_xhtml;  @safe:  static template spineRgxXHTML() {    static struct RgxXHTML { @@ -748,14 +748,14 @@ static line_break                               = ctRegex!(` [\\]{2}`, "m"); //  *** LaTeX special characters template -#+HEADER: :tangle "../src/doc_reform/io_out/rgx_latex.d" +#+HEADER: :tangle "../src/sisudoc/io_out/rgx_latex.d"  #+HEADER: :noweb yes  #+BEGIN_SRC d  <<doc_header_including_copyright_and_license>>  /++    regex: regular expressions used in sisu document parser  +/ -module doc_reform.io_out.rgx_latex; +module sisudoc.io_out.rgx_latex;  @safe:  static template spineRgxLSC() {    static struct RgxLSC { @@ -785,7 +785,7 @@ static latex_clean_bookindex_linebreak          = ctRegex!(`\s*\\\\\\\\\s*`, "m"  #+NAME: doc_header_including_copyright_and_license  #+HEADER: :noweb yes  #+BEGIN_SRC emacs-lisp -<<./spine_version_info_and_doc_header_including_copyright_and_license.org:spine_doc_header_including_copyright_and_license()>> +<<./sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org:spine_doc_header_including_copyright_and_license()>>  #+END_SRC  * __END__ | 
