aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANUAL.txt1
-rw-r--r--src/Text/Pandoc/App/Opt.hs4
2 files changed, 5 insertions, 0 deletions
diff --git a/MANUAL.txt b/MANUAL.txt
index fedb147b1..2e37d62a0 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -1436,6 +1436,7 @@ output-file:
input-files:
- preface.md
- content.md
+# or you may use input-file: with a single value
template: letter
standalone: true
diff --git a/src/Text/Pandoc/App/Opt.hs b/src/Text/Pandoc/App/Opt.hs
index a93b2a212..6db397147 100644
--- a/src/Text/Pandoc/App/Opt.hs
+++ b/src/Text/Pandoc/App/Opt.hs
@@ -194,6 +194,10 @@ doOpt (k',v) = do
parseYAML v >>= \x -> return (\o -> o{ optOutputFile = unpack <$> x })
"input-files" ->
parseYAML v >>= \x -> return (\o -> o{ optInputFiles = map unpack x })
+ "input-file" -> -- allow either a list or a single value
+ (parseYAML v >>= \x -> return (\o -> o{ optInputFiles = map unpack x }))
+ <|>
+ (parseYAML v >>= \x -> return (\o -> o{ optInputFiles = [unpack x] }))
"number-sections" ->
parseYAML v >>= \x -> return (\o -> o{ optNumberSections = x })
"number-offset" ->