diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-04-11 19:43:06 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-05-20 11:27:25 -0400 | 
| commit | 08549c763cd731531d4e1c52c86fe265cbef92f2 (patch) | |
| tree | ca82a1afe55e1fb75aa7c1428684db29d7390219 /src | |
| parent | config, where used without document processing (diff) | |
uid, select separator that works better with sqlite
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc_reform/io_in/paths_source.d | 22 | ||||
| -rw-r--r-- | src/doc_reform/io_out/defaults.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/defaults.d | 3 | ||||
| -rw-r--r-- | src/doc_reform/meta/rgx.d | 1 | 
4 files changed, 16 insertions, 13 deletions
| diff --git a/src/doc_reform/io_in/paths_source.d b/src/doc_reform/io_in/paths_source.d index 432b484..c504c77 100644 --- a/src/doc_reform/io_in/paths_source.d +++ b/src/doc_reform/io_in/paths_source.d @@ -193,12 +193,12 @@ template PathMatters() {              string _uid;              if (is_pod && !(pod_name_with_path.empty)) {                if (pod_name_with_path.baseName == filename_base) { -                _uid = filename_base ~ "." ~ filename_extension ~ mkup.sep ~ lng; +                _uid = filename_base ~ "." ~ filename_extension ~ mkup.uid_sep ~ lng;                } else { -                _uid = pod_name_with_path.baseName ~ mkup.sep ~ filename_base ~ "." ~ filename_extension ~ mkup.sep ~ lng; +                _uid = pod_name_with_path.baseName ~ mkup.uid_sep ~ filename_base ~ "." ~ filename_extension ~ mkup.uid_sep ~ lng;                }              } else { -              _uid = mkup.sep ~ filename_base ~ "." ~ filename_extension ~ mkup.sep ~ lng; +              _uid = mkup.uid_sep ~ filename_base ~ "." ~ filename_extension ~ mkup.uid_sep ~ lng;              }              return _uid;            } @@ -208,7 +208,7 @@ template PathMatters() {                if (pod_name_with_path.baseName == filename_base) {                  _uid = filename_base ~ "." ~ lng;                } else { -                _uid = pod_name_with_path.baseName ~ mkup.sep ~ filename_base ~ "." ~ lng; +                _uid = pod_name_with_path.baseName ~ mkup.uid_sep ~ filename_base ~ "." ~ lng;                }              } else {                _uid = "_" ~ filename_base ~ "." ~ lng; @@ -218,18 +218,18 @@ template PathMatters() {            @safe string docname_composite_unique_per_src_doc() {              string _fn;              if (pod_name_with_path.baseName == filename_base) { -              _fn = filename_base ~ mkup.sep ~ filename_extension ~ mkup.sep ~ lng; +              _fn = filename_base ~ mkup.uid_sep ~ filename_extension ~ mkup.uid_sep ~ lng;              } else if (!(pod_name_with_path.empty)) { -              _fn = pod_name_with_path.baseName ~ mkup.sep ~ filename_base ~ mkup.sep ~ filename_extension ~ mkup.sep ~ lng; +              _fn = pod_name_with_path.baseName ~ mkup.uid_sep ~ filename_base ~ mkup.uid_sep ~ filename_extension ~ mkup.uid_sep ~ lng;              } else { -              _fn = "_" ~ mkup.sep ~ filename_base ~ mkup.sep ~ filename_extension ~ mkup.sep ~ lng; +              _fn = "_" ~ mkup.uid_sep ~ filename_base ~ mkup.uid_sep ~ filename_extension ~ mkup.uid_sep ~ lng;              }              return _fn;            }            @safe string docname_composite_unique_per_src_pod() {            /+              z pod name if any + src filename (without lng code) -             filename ~ mkup.sep ~ lng +             filename ~ mkup.uid_sep ~ lng               * unique per src pod               used by               - pod (multilingual collection) @@ -237,11 +237,11 @@ template PathMatters() {            +/              string _fn;              if (pod_name_with_path.baseName == filename_base) { -              _fn = filename_base ~ mkup.sep ~ filename_extension; +              _fn = filename_base ~ mkup.uid_sep ~ filename_extension;              } else if (!(pod_name_with_path.empty)) { -              _fn = pod_name_with_path.baseName ~ mkup.sep ~ filename_base ~ mkup.sep ~ filename_extension; +              _fn = pod_name_with_path.baseName ~ mkup.uid_sep ~ filename_base ~ mkup.uid_sep ~ filename_extension;              } else { -              _fn = "_" ~ mkup.sep ~ filename_base ~ mkup.sep ~ filename_extension; +              _fn = "_" ~ mkup.uid_sep ~ filename_base ~ mkup.uid_sep ~ filename_extension;              }              return _fn;            } diff --git a/src/doc_reform/io_out/defaults.d b/src/doc_reform/io_out/defaults.d index 36e1428..eea786a 100644 --- a/src/doc_reform/io_out/defaults.d +++ b/src/doc_reform/io_out/defaults.d @@ -34,7 +34,8 @@ template InternalMarkup() {      string tc_c                   = "┚";      string tc_p                   = "┆";      string img                    = "☼"; -    string sep                    = "␣"; // "~"; +    string sep                    = "␣"; // "~";"␣"; // "~"; +    string uid_sep                = ":";      string on_o  = "「";       string on_c  = "」";      string mk_bullet               = "● ";      static string indent_by_spaces_provided(int indent, string _indent_spaces ="░░") { diff --git a/src/doc_reform/meta/defaults.d b/src/doc_reform/meta/defaults.d index 8d34069..e592be7 100644 --- a/src/doc_reform/meta/defaults.d +++ b/src/doc_reform/meta/defaults.d @@ -187,7 +187,8 @@ template InternalMarkup() {      string tc_c                   = "┚";      string tc_p                   = "┆";      string img                    = "☼"; -    string sep                    = "␣"; // "~"; +    string sep                    = "␣"; // "~";"␣"; // "~"; +    string uid_sep                = ":";      string on_o  = "「";       string on_c  = "」";      string mk_bullet               = "● ";      static string indent_by_spaces_provided(int indent, string _indent_spaces ="░░") { diff --git a/src/doc_reform/meta/rgx.d b/src/doc_reform/meta/rgx.d index a5a153e..7508a67 100644 --- a/src/doc_reform/meta/rgx.d +++ b/src/doc_reform/meta/rgx.d @@ -7,6 +7,7 @@ static template spineRgxIn() {      /+ misc +/      // static true_dollar                                    = ctRegex!(`\$`, "gm");      static sep                                            = ctRegex!(`␣`, "gm"); +    static uid_sep                                        = ctRegex!(`:`, "gm"); // ctRegex!(`␣`, "gm");      static flag_action                                    = ctRegex!(`^(--[a-z][a-z0-9-]+)$`);      static within_quotes                                  = ctRegex!(`"(.+?)"`, "m");      static yaml_tag_is_str                                = ctRegex!(`:str$`); | 
