Added failing test for escape in markdown link title.

This commit is contained in:
John MacFarlane 2011-12-04 22:37:28 -08:00
parent e53e538524
commit a4364b3784

View file

@ -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"