diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-11-14 11:16:09 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-11-19 16:55:31 -0500 |
commit | d61236952f19c1a1107a11cf11874104c0fe1a9b (patch) | |
tree | 838d700a639cdb358fe744361fc593b453de03b8 /src/doc_reform/meta/metadoc_harvests_topics.d | |
parent | makefile program version tagging for bin-archive (diff) |
0.8.3 (if exists) get site config & output pathdoc-reform_v0.8.3
- read once & read early:
- once per batch processing
- early (needed by metadata --harvest)
Diffstat (limited to 'src/doc_reform/meta/metadoc_harvests_topics.d')
-rw-r--r-- | src/doc_reform/meta/metadoc_harvests_topics.d | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc_reform/meta/metadoc_harvests_topics.d b/src/doc_reform/meta/metadoc_harvests_topics.d index 63e4a79..f8e6514 100644 --- a/src/doc_reform/meta/metadoc_harvests_topics.d +++ b/src/doc_reform/meta/metadoc_harvests_topics.d @@ -15,8 +15,9 @@ module doc_reform.meta.metadoc_harvests_topics; mixin DocReformRgxInit; template DocReformMetaDocHarvestsTopics() { auto mkup = InlineMarkup(); - void DocReformMetaDocHarvestsTopics(H,O)( + void DocReformMetaDocHarvestsTopics(H,M,O)( H hvst, + M _make_and_meta_struct, O _opt_action, ) { auto min_repeat_number = 42; @@ -506,7 +507,7 @@ string theme_light_1 = format(q"┃ </html> ┃") ~ "\n"; import doc_reform.output.paths_output; - auto out_pth = DocReformPathsHTML!()(_opt_action.output_dir_set, ""); + auto out_pth = DocReformPathsHTML!()(_make_and_meta_struct.conf.output_path, ""); try { auto f = File(out_pth.harvest("topics.html"), "w"); foreach (o; topics) { |