summaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-22 19:20:21 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-22 19:20:21 +0000
commitf7d0da28e9b7d0b6ab5027cbaba0b7aca4d1e52d (patch)
treeb369f02f4f54a04a34259ee2c38e4c1c14ba315d /src/Main.hs
parentc9e89e17934c6ead71e7b3e2d0ceb068963026fa (diff)
Main: Relabeled asciiMathMLLink -> asciiMathML, asciiMathML -> math.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@767 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Main.hs b/src/Main.hs
index a60ca4c33..0c9bc598a 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -177,7 +177,7 @@ options =
, Option "" ["strict"]
(NoArg
(\opt -> return opt { optStrict = True } ))
- "" -- "Use strict markdown syntax with no extensions"
+ "" -- "Disable markdown syntax extensions"
, Option "" ["reference-links"]
(NoArg
@@ -399,7 +399,7 @@ main = do
, optNumberSections = numberSections
, optIncremental = incremental
, optSmart = smart
- , optASCIIMathML = asciiMathML
+ , optASCIIMathML = math
, optDumpArgs = dumpArgs
, optIgnoreArgs = ignoreArgs
, optStrict = strict
@@ -455,11 +455,11 @@ main = do
then ""
else "<link rel=\"stylesheet\" href=\"" ++ css ++
"\" type=\"text/css\" media=\"all\" />\n"
- let asciiMathMLLink = if asciiMathML then asciiMathMLScript else ""
+ let asciiMathML = if math then asciiMathMLScript else ""
let header = (if (customHeader == "DEFAULT")
then defaultHeader
else customHeader) ++
- csslink ++ asciiMathMLLink ++ includeHeader
+ csslink ++ asciiMathML ++ includeHeader
let writerOptions = WriterOptions { writerStandalone = standalone &&
(not strict),
writerHeader = header,