summaryrefslogtreecommitdiff
path: root/tests/RunTests.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-12-06 20:36:58 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2010-12-06 20:36:58 -0800
commit7864f30717767f89ee33532b59819b51ef2e14d4 (patch)
treec1a19f3b6c416cde72d929f76c453a43a7fe5c2c /tests/RunTests.hs
parent5a4609584c84114e8d148f558bed86353c7f0146 (diff)
Markdown reader: handle curly quotes better.
Previously, curly quotes were just parsed literally, leading to problems in some output formats. Now they are parsed as Quoted inlines, if --smart is specified. Resolves Issue #270.
Diffstat (limited to 'tests/RunTests.hs')
-rw-r--r--tests/RunTests.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/RunTests.hs b/tests/RunTests.hs
index 94b56d04d..0d8a1a6a1 100644
--- a/tests/RunTests.hs
+++ b/tests/RunTests.hs
@@ -96,7 +96,7 @@ main = do
"testsuite.txt" "testsuite.native"
r7 <- runTest "markdown reader (tables)" ["-r", "markdown", "-w", "native"]
"tables.txt" "tables.native"
- r7a <- runTest "markdown reader (more)" ["-r", "markdown", "-w", "native"]
+ r7a <- runTest "markdown reader (more)" ["-r", "markdown", "-w", "native", "-S"]
"markdown-reader-more.txt" "markdown-reader-more.native"
r8 <- runTest "rst reader" ["-r", "rst", "-w", "native", "-s", "-S"]
"rst-reader.rst" "rst-reader.native"