diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-12-21 11:38:05 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-02-11 13:08:49 -0500 |
commit | 10ec5e96d65b58dbe915c2d622b0bfb8abbd122b (patch) | |
tree | f07e7b940b754a8133ff69c29596fcbcd327aef7 /src/doc_reform/meta/metadoc_harvest.d | |
parent | xmls, minor, internal links (metadata, images) (diff) |
reduce use of auto, much with tuples
Diffstat (limited to 'src/doc_reform/meta/metadoc_harvest.d')
-rw-r--r-- | src/doc_reform/meta/metadoc_harvest.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc_reform/meta/metadoc_harvest.d b/src/doc_reform/meta/metadoc_harvest.d index 4bb62ae..eb050e4 100644 --- a/src/doc_reform/meta/metadoc_harvest.d +++ b/src/doc_reform/meta/metadoc_harvest.d @@ -18,7 +18,7 @@ template spineMetaDocHarvest() { std.utf, std.conv : to; mixin InternalMarkup; - auto markup = InlineMarkup(); + static auto mkup = InlineMarkup(); import doc_reform.io_out.paths_output; auto pth_html_abs = spinePathsHTML!()(doc_matters.output_path, doc_matters.src.language); auto pth_html_rel = spineDocRootTreeHTML!()(doc_matters.src.language); |