summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-07-24 00:49:10 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2010-07-24 00:49:10 -0700
commit8fe468463ec2b957d63fb0c33d034cbcbd3237b3 (patch)
treeed55eac62d3d26d84bfdfbad4c163cd6dadaeb2d /src
parent89daf06dd25b2fbff2fbf21377164c8cac21f9ba (diff)
--offline implies --standalone.
Diffstat (limited to 'src')
-rw-r--r--src/pandoc.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs
index 7af43d3a4..ef38c0332 100644
--- a/src/pandoc.hs
+++ b/src/pandoc.hs
@@ -321,7 +321,8 @@ options =
, Option "" ["offline"]
(NoArg
- (\opt -> return opt { optOffline = True }))
+ (\opt -> return opt { optOffline = True,
+ optStandalone = True }))
"" -- "Make slide shows include all the needed js and css"
, Option "" ["xetex"]