summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-03-26 12:19:50 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-03-26 12:19:50 -0700
commitec97a06d8a2b458258f9c694181bbfb14fb6a20a (patch)
tree6a510c5a521ce5a992231a2367de5931477719a1 /test
parent549a713808004d50282e2ff77f25f5e6116020b8 (diff)
Update regression tests in light of recent spec changes...
affecting link destinations.
Diffstat (limited to 'test')
-rw-r--r--test/regression.txt15
1 files changed, 12 insertions, 3 deletions
diff --git a/test/regression.txt b/test/regression.txt
index a6fb694..62b1e7e 100644
--- a/test/regression.txt
+++ b/test/regression.txt
@@ -81,7 +81,8 @@ Issue #193 - unescaped left angle brackets in link destination
[a]: <te<st>
.
-<p><a href="%3Cte%3Cst%3E">a</a></p>
+<p>[a]</p>
+<p>[a]: &lt;te<st></p>
````````````````````````````````
Issue #192 - escaped spaces in link destination
@@ -118,8 +119,9 @@ Issue #530 - link parsing corner cases
)
.
<p>[a](\ b)</p>
-<p><a href="%3C%3Cb">a</a></p>
-<p><a href="%3Cb">a</a></p>
+<p>[a](&lt;&lt;b)</p>
+<p>[a](&lt;b
+)</p>
````````````````````````````````
Issue commonmark#526 - unescaped ( in link title
@@ -145,3 +147,10 @@ opener.
</style>
````````````````````````````````
+Issue #289.
+
+```````````````````````````````` example
+[a](<b) c>
+.
+<p>[a](&lt;b) c&gt;</p>
+````````````````````````````````