diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-03-07 12:13:48 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-03-07 14:40:59 -0500 |
commit | 60e34a2acd828681be9043ac710174aee6aba203 (patch) | |
tree | 266708eedc0c833d0a55160ee503233013779712 /src/doc_reform/meta/conf_make_meta_structs.d | |
parent | latex, pdf headers, some removed (diff) |
latex, pagebreaks, make headers
- for book, article and manually set pagebreaks,
not fully utilized but flexibility introduced
Diffstat (limited to 'src/doc_reform/meta/conf_make_meta_structs.d')
-rw-r--r-- | src/doc_reform/meta/conf_make_meta_structs.d | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/doc_reform/meta/conf_make_meta_structs.d b/src/doc_reform/meta/conf_make_meta_structs.d index 664c1b1..966e8d0 100644 --- a/src/doc_reform/meta/conf_make_meta_structs.d +++ b/src/doc_reform/meta/conf_make_meta_structs.d @@ -89,8 +89,9 @@ static auto mkup = InlineMarkup(); return line_; } struct ConfCompositeMakeStr { - string bold; + string doc_type = "book"; // book, article string breaks; + string bold; string cover_image; string css; string emphasis; @@ -115,6 +116,9 @@ struct confCompositeMakeBuild { } return _out; } + string doc_type(string _mk) { + return _mk; + } string breaks(string _mk) { return _mk; } @@ -172,10 +176,11 @@ struct confCompositeMakeBuild { } } struct ConfCompositeMakeInit { - string[] bold; + string doc_type; string breaks; string cover_image; string css; + string[] bold; string[] emphasis; string[] footer; string[] headings; |