diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-14 12:20:33 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-14 12:20:33 -0800 |
commit | 2b08e32a9090442b530822f151c94fbd7d1cbbd1 (patch) | |
tree | ebd4b4bf68414884f69ceacce3cda0d3a34c0d3b /tests | |
parent | 4ffa70970dc7219aa71c137c728280b7460ed604 (diff) | |
download | pandoc-2b08e32a9090442b530822f151c94fbd7d1cbbd1.tar.gz |
Fixe autolinks with following punctuation.
Closes #1811.
The price of this is that autolinked bare URIs can no longer
contain `>` characters, but this is not a big issue.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Tests/Readers/Markdown.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/Tests/Readers/Markdown.hs b/tests/Tests/Readers/Markdown.hs index a7e322306..fdb1a7417 100644 --- a/tests/Tests/Readers/Markdown.hs +++ b/tests/Tests/Readers/Markdown.hs @@ -187,6 +187,11 @@ tests = [ testGroup "inline code" ] , testGroup "bare URIs" (map testBareLink bareLinkTests) + , testGroup "autolinks" + [ "with unicode dash following" =: + "<http://foo.bar>\8212" =?> para (autolink "http://foo.bar" <> + str "\8212") + ] , testGroup "Headers" [ "blank line before header" =: "\n# Header\n" |