diff options
author | Minijackson <minijackson@riseup.net> | 2020-01-26 17:19:09 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2020-01-26 17:19:09 +0100 |
commit | 5a83e2b55b672042562601866ed0253613c5e8b8 (patch) | |
tree | e634689197c17ddd27a18345033e6336ff4f2168 /src/generator | |
parent | ab5a6da519f91faa1ba5aa281112e547fcd08b88 (diff) | |
download | poseidoc-5a83e2b55b672042562601866ed0253613c5e8b8.tar.gz poseidoc-5a83e2b55b672042562601866ed0253613c5e8b8.zip |
generator-config: allow unspecified pandoc-filters conf
Diffstat (limited to 'src/generator')
-rw-r--r-- | src/generator/config.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/generator/config.rs b/src/generator/config.rs index c896e87..a42caa1 100644 --- a/src/generator/config.rs +++ b/src/generator/config.rs | |||
@@ -75,6 +75,7 @@ pub(crate) struct ProvidedConfig { | |||
75 | #[structopt(long = "generator-to")] | 75 | #[structopt(long = "generator-to")] |
76 | pub(super) to: Option<String>, | 76 | pub(super) to: Option<String>, |
77 | #[structopt(long = "generator-pandoc-filters", number_of_values = 1)] | 77 | #[structopt(long = "generator-pandoc-filters", number_of_values = 1)] |
78 | #[serde(default)] | ||
78 | pub(super) pandoc_filters: Vec<String>, | 79 | pub(super) pandoc_filters: Vec<String>, |
79 | #[structopt(skip)] | 80 | #[structopt(skip)] |
80 | pub(super) inlines: Option<Inlines>, | 81 | pub(super) inlines: Option<Inlines>, |