aboutsummaryrefslogtreecommitdiff
path: root/src/Tests/Readers
diff options
context:
space:
mode:
Diffstat (limited to 'src/Tests/Readers')
-rw-r--r--src/Tests/Readers/Markdown.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Tests/Readers/Markdown.hs b/src/Tests/Readers/Markdown.hs
index 6739db263..d22cc308a 100644
--- a/src/Tests/Readers/Markdown.hs
+++ b/src/Tests/Readers/Markdown.hs
@@ -47,16 +47,16 @@ tests = [ testGroup "inline code"
, testGroup "backslash escapes"
[ "in URL" =:
"[hi](/there\\))"
- =?> para (link "hi" "/there)" "")
+ =?> para (link "/there)" "" "hi")
, "in title" =:
"[hi](/there \"a\\\"a)"
- =?> para (link "hi" "/there" "a\"a")
+ =?> para (link "/there" "a\"a" "hi")
, "in reference link title" =:
"[hi]\n\n[hi]: /there (a\\)a)"
- =?> para (link "hi" "/there" "a)a")
+ =?> para (link "/there" "a)a" "hi")
, "in reference link URL" =:
"[hi]\n\n[hi]: /there\\."
- =?> para (link "hi" "/there." "")
+ =?> para (link "/there." "" "hi")
]
, testGroup "smart punctuation"
[ test markdownSmart "quote before ellipses"