diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-11-15 23:58:15 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-11-22 09:54:24 -0500 |
commit | 96b03396ddb487816ebd85d1c6f30400019702fc (patch) | |
tree | 4519db10b3f50efa07e5f9f34783c9b7e7eaa114 /src/doc_reform/output/html.d | |
parent | org renaming (diff) |
name changes
Diffstat (limited to 'src/doc_reform/output/html.d')
-rw-r--r-- | src/doc_reform/output/html.d | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/doc_reform/output/html.d b/src/doc_reform/output/html.d index 85ec9ba..07da3c1 100644 --- a/src/doc_reform/output/html.d +++ b/src/doc_reform/output/html.d @@ -17,7 +17,7 @@ template outputHTML() { const D doc_abstraction, M doc_matters, ) { - mixin DocReformOutputRgxInit; + mixin spineOutputRgxInit; auto xhtml_format = outputXHTMLs(); auto rgx = Rgx(); string[] doc_html; @@ -190,7 +190,7 @@ template outputHTML() { debug(asserts) { static assert(is(typeof(doc) == string[])); } - auto pth_html = DocReformPathsHTML!()(doc_matters.output_path, doc_matters.src.language); + auto pth_html = spinePathsHTML!()(doc_matters.output_path, doc_matters.src.language); try { if (!exists(pth_html.base)) { pth_html.base.mkdirRecurse; @@ -210,7 +210,7 @@ template outputHTML() { const D doc_abstraction, M doc_matters, ) { - mixin DocReformOutputRgxInit; + mixin spineOutputRgxInit; auto rgx = Rgx(); auto xhtml_format = outputXHTMLs(); string[][string] doc_html; @@ -467,9 +467,9 @@ template outputHTML() { debug(asserts) { static assert(is(typeof(doc_html) == string[][string])); } - mixin DocReformOutputRgxInit; + mixin spineOutputRgxInit; auto rgx = Rgx(); - auto pth_html = DocReformPathsHTML!()(doc_matters.output_path, doc_matters.src.language); + auto pth_html = spinePathsHTML!()(doc_matters.output_path, doc_matters.src.language); auto xhtml_format = outputXHTMLs(); auto m = doc_matters.src.filename.matchFirst(rgx.src_fn); try { @@ -494,8 +494,8 @@ template outputHTML() { } } void css(M)(M doc_matters) { - auto css = DocReformCss(doc_matters); - auto pth_html = DocReformPathsHTML!()(doc_matters.output_path, doc_matters.src.language); + auto css = spineCss(doc_matters); + auto pth_html = spinePathsHTML!()(doc_matters.output_path, doc_matters.src.language); try { if (!exists(pth_html.css)) { (pth_html.css).mkdirRecurse; @@ -513,7 +513,7 @@ template outputHTML() { ) { { /+ (copy html images) +/ - auto pth_html = DocReformPathsHTML!()(doc_matters.output_path, doc_matters.src.language); + auto pth_html = spinePathsHTML!()(doc_matters.output_path, doc_matters.src.language); if (!exists(pth_html.image)) { pth_html.image.mkdirRecurse; } |