aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pandoc.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs
index 065a6850a..a477538ee 100644
--- a/src/pandoc.hs
+++ b/src/pandoc.hs
@@ -235,11 +235,6 @@ options =
(\opt -> return opt { optHtml5 = True }))
"" -- "Produce HTML5 in HTML output"
- , Option "" ["chapters"]
- (NoArg
- (\opt -> return opt { optChapters = True }))
- "" -- "Use chapter for top-level sections in LaTeX, DocBook"
-
, Option "m" ["latexmathml", "asciimathml"]
(OptArg
(\arg opt ->
@@ -307,6 +302,11 @@ options =
(\opt -> return opt { optXeTeX = True }))
"" -- "Format latex for processing by XeTeX"
+ , Option "" ["chapters"]
+ (NoArg
+ (\opt -> return opt { optChapters = True }))
+ "" -- "Use chapter for top-level sections in LaTeX, DocBook"
+
, Option "N" ["number-sections"]
(NoArg
(\opt -> return opt { optNumberSections = True }))