aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/App.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/App.hs')
-rw-r--r--src/Text/Pandoc/App.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs
index 1a41050d7..9d8fc592b 100644
--- a/src/Text/Pandoc/App.hs
+++ b/src/Text/Pandoc/App.hs
@@ -230,6 +230,11 @@ convertWithOpts opts = do
variables <- return (optVariables opts)
>>=
+ (\vars -> return $ ("outputfile", optOutputFile opts) : vars)
+ >>=
+ withList (addStringAsVariable "sourcefile")
+ (optInputFiles opts)
+ >>=
withList (addContentsAsVariable "include-before")
(optIncludeBeforeBody opts)
>>=