aboutsummaryrefslogtreecommitdiff
path: root/src/pandoc.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-01-16 11:08:20 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-01-16 11:08:20 -0800
commit281b36470fab6cbb19537b47feac078d6d12927f (patch)
tree7a940a6ab481e24fdc14bbddd2273ee5c5e62b47 /src/pandoc.hs
parent25da1680c328a0f65bed629cfd05425c730b3de8 (diff)
downloadpandoc-281b36470fab6cbb19537b47feac078d6d12927f.tar.gz
Minor code formatting.
Diffstat (limited to 'src/pandoc.hs')
-rw-r--r--src/pandoc.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs
index a477538ee..f4dc4989f 100644
--- a/src/pandoc.hs
+++ b/src/pandoc.hs
@@ -488,24 +488,29 @@ options =
exitWith ExitSuccess)
"FORMAT")
"" -- "Print default template for FORMAT"
+
, Option "" ["bibliography"]
(ReqArg
(\arg opt -> return opt { optBibliography = (optBibliography opt) ++ [arg] })
"FILENAME")
""
+
, Option "" ["csl"]
(ReqArg
(\arg opt -> return opt { optCslFile = arg })
"FILENAME")
""
+
, Option "" ["natbib", "no-citeproc"]
(NoArg
(\opt -> return opt { optCiteMethod = Natbib }))
"" -- "Use natbib cite commands in LaTeX output"
+
, Option "" ["biblatex"]
(NoArg
(\opt -> return opt { optCiteMethod = Biblatex }))
"" -- "Use biblatex cite commands in LaTeX output"
+
, Option "" ["data-dir"]
(ReqArg
(\arg opt -> return opt { optDataDir = Just arg })