aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/doc_reform/meta/metadoc.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc_reform/meta/metadoc.d')
-rw-r--r--src/doc_reform/meta/metadoc.d6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc_reform/meta/metadoc.d b/src/doc_reform/meta/metadoc.d
index 8432073..ebc5344 100644
--- a/src/doc_reform/meta/metadoc.d
+++ b/src/doc_reform/meta/metadoc.d
@@ -14,7 +14,6 @@ template spineAbstraction() {
doc_reform.io_in.read_source_files,
doc_reform.io_out.hub;
mixin spineRgxIn;
- mixin contentJSONtoSpineStruct;
mixin spineBiblio;
mixin spineRgxDocStructFlags;
mixin outputHub;
@@ -32,7 +31,7 @@ template spineAbstraction() {
{ /+ document config/make file +/
auto _config_document_struct = readConfigDoc!()(_manifest, _env);
import doc_reform.meta.conf_make_meta_yaml;
- _make_and_meta_struct = _config_document_struct.configParseYAMLreturnSpineStruct!()(_make_and_meta_struct, _manifest);
+ _make_and_meta_struct = _config_document_struct.configParseYAMLreturnSpineStruct!()(_make_and_meta_struct, _manifest, _opt_action);
}
/+ ↓ read file (filename with path) +/
/+ ↓ file tuple of header and content +/
@@ -67,6 +66,7 @@ template spineAbstraction() {
_header_body_insertfilelist_imagelist[headBody.header],
_make_and_meta_struct,
_manifest,
+ _opt_action,
);
if ((_opt_action.debug_do)
|| (_opt_action.very_verbose)
@@ -165,7 +165,7 @@ template spineAbstraction() {
@safe auto action() {
/+ getopt options, commandline instructions, raw
- processing instructions --epub --html etc.
- - command line config instructions --output-path
+ - command line config instructions --output
+/
return _opt_action;
}