diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-12 03:27:24 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-12 03:27:24 +0000 |
commit | 2bca833da0f8cb6a6fc9bfbeff09a89fe49f1f94 (patch) | |
tree | 4d29acf21e43d3cc3d82e5dba82acf9e5cfdc7c9 /src | |
parent | 6acc727c53795bb7013dd015cc8519b912f45030 (diff) | |
download | pandoc-2bca833da0f8cb6a6fc9bfbeff09a89fe49f1f94.tar.gz |
Changed order of options, for aesthetic reasons.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@677 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src')
-rw-r--r-- | src/Main.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Main.hs b/src/Main.hs index dcfad2723..3c206755c 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -225,6 +225,11 @@ options = (\opt -> return opt { optNumberSections = True })) "" -- "Number sections in LaTeX" + , Option "" ["toc", "table-of-contents"] + (NoArg + (\opt -> return opt { optTableOfContents = True })) + "" -- "Include table of contents" + , Option "c" ["css"] (ReqArg (\arg opt -> return opt { optCSS = arg, @@ -232,11 +237,6 @@ options = "CSS") "" -- "Link to CSS style sheet" - , Option "" ["toc", "table-of-contents"] - (NoArg - (\opt -> return opt { optTableOfContents = True })) - "" -- "Include table of contents" - , Option "H" ["include-in-header"] (ReqArg (\arg opt -> do |