aboutsummaryrefslogtreecommitdiff
path: root/src/Tests/Readers
diff options
context:
space:
mode:
Diffstat (limited to 'src/Tests/Readers')
-rw-r--r--src/Tests/Readers/Markdown.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Tests/Readers/Markdown.hs b/src/Tests/Readers/Markdown.hs
index 585965db5..40779778a 100644
--- a/src/Tests/Readers/Markdown.hs
+++ b/src/Tests/Readers/Markdown.hs
@@ -48,6 +48,9 @@ tests = [ testGroup "inline code"
[ "in URL" =:
"[hi](/there\\))"
=?> para (link "hi" "/there)" "")
+ , "in title" =:
+ "[hi](/there \"a\\\"a)"
+ =?> para (link "hi" "/there" "a\"a")
]
, testGroup "smart punctuation"
[ test markdownSmart "quote before ellipses"