diff options
author | François Gannaz <francois.gannaz@silecs.info> | 2012-02-21 22:00:10 +0100 |
---|---|---|
committer | François Gannaz <francois.gannaz@silecs.info> | 2012-02-21 22:00:10 +0100 |
commit | a922bd6d8e06673b9bb1ff807734c7090c6516c0 (patch) | |
tree | 2e50ca3237a3f6efeedbf25a1637eda711e9dca5 /src/Tests | |
parent | 661c6c12e96b85cbe65e110727881bd3dab813d1 (diff) | |
download | pandoc-a922bd6d8e06673b9bb1ff807734c7090c6516c0.tar.gz |
Added support for markdown-extra tables in the markdown parser
Only tables whose lines begin with a "|" are supported.
There are 2 warnings about unused variables when compiling.
Diffstat (limited to 'src/Tests')
-rw-r--r-- | src/Tests/Old.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Tests/Old.hs b/src/Tests/Old.hs index 1ec32a30d..a26e435a0 100644 --- a/src/Tests/Old.hs +++ b/src/Tests/Old.hs @@ -56,6 +56,8 @@ tests = [ testGroup "markdown" "testsuite.txt" "testsuite.native" , test "tables" ["-r", "markdown", "-w", "native", "--columns=80"] "tables.txt" "tables.native" + , test "extratables" ["-r", "markdown", "-w", "native", "--columns=80"] + "markdown-tables.txt" "markdown-tables.native" , test "more" ["-r", "markdown", "-w", "native", "-S"] "markdown-reader-more.txt" "markdown-reader-more.native" , lhsReaderTest "markdown+lhs" |