diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-04-15 20:05:56 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-05-20 11:27:26 -0400 |
commit | 0b484b0a1a6405a53616416aaaa6512a602b6072 (patch) | |
tree | e9737b80ad9fd83254510368198f3fb6dfb8926c /src/doc_reform/meta/metadoc.d | |
parent | cgi search form: path; theme; download remote src (diff) |
cli precedence over config file settings
- cli precedence over config file settings
- latex papersize settings sorted
Diffstat (limited to 'src/doc_reform/meta/metadoc.d')
-rw-r--r-- | src/doc_reform/meta/metadoc.d | 6 |
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; } |