diff options
Diffstat (limited to 'test/regression.txt')
-rw-r--r-- | test/regression.txt | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/test/regression.txt b/test/regression.txt index 4ec2c25..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]: <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](<<b)</p> +<p>[a](<b +)</p> ```````````````````````````````` Issue commonmark#526 - unescaped ( in link title @@ -129,3 +131,26 @@ Issue commonmark#526 - unescaped ( in link title . <p>[link](url ((title))</p> ```````````````````````````````` + +Issue commonamrk#517 - script, pre, style close tag without +opener. + +```````````````````````````````` example +</script> + +</pre> + +</style> +. +</script> +</pre> +</style> +```````````````````````````````` + +Issue #289. + +```````````````````````````````` example +[a](<b) c> +. +<p>[a](<b) c></p> +```````````````````````````````` |