diff options
Diffstat (limited to 'test/regression.txt')
-rw-r--r-- | test/regression.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/regression.txt b/test/regression.txt index a6669d0..4ec2c25 100644 --- a/test/regression.txt +++ b/test/regression.txt @@ -92,3 +92,40 @@ Issue #192 - escaped spaces in link destination . <p>[a](te\ st)</p> ```````````````````````````````` + +Issue #527 - meta tags in inline contexts + +```````````````````````````````` example +City: +<span itemprop="contentLocation" itemscope itemtype="https://schema.org/City"> + <meta itemprop="name" content="Springfield"> +</span> +. +<p>City: +<span itemprop="contentLocation" itemscope itemtype="https://schema.org/City"> +<meta itemprop="name" content="Springfield"> +</span></p> +```````````````````````````````` + +Issue #530 - link parsing corner cases + +```````````````````````````````` example +[a](\ b) + +[a](<<b) + +[a](<b +) +. +<p>[a](\ b)</p> +<p><a href="%3C%3Cb">a</a></p> +<p><a href="%3Cb">a</a></p> +```````````````````````````````` + +Issue commonmark#526 - unescaped ( in link title + +```````````````````````````````` example +[link](url ((title)) +. +<p>[link](url ((title))</p> +```````````````````````````````` |