aboutsummaryrefslogtreecommitdiff
path: root/lib/cmark/test/regression.txt
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-22 20:53:39 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-22 20:53:39 +0200
commit8dbfb0890560fd1cd698d06fa05ac868c4db8576 (patch)
tree57d138d7e9967473b8ed52863dabeb739a34ac8e /lib/cmark/test/regression.txt
parent058aeef80e8a33d0e385f284b23eeb117f5ec547 (diff)
downloadkristall-8dbfb0890560fd1cd698d06fa05ac868c4db8576.tar.gz
Removes 'cruft' from cmark. We only care for the source anyways.
Diffstat (limited to 'lib/cmark/test/regression.txt')
-rw-r--r--lib/cmark/test/regression.txt164
1 files changed, 0 insertions, 164 deletions
diff --git a/lib/cmark/test/regression.txt b/lib/cmark/test/regression.txt
deleted file mode 100644
index d77c8f2..0000000
--- a/lib/cmark/test/regression.txt
+++ /dev/null
@@ -1,164 +0,0 @@
-### Regression tests
-
-Issue #113: EOL character weirdness on Windows
-(Important: first line ends with CR + CR + LF)
-
-```````````````````````````````` example
-line1
-line2
-.
-<p>line1</p>
-<p>line2</p>
-````````````````````````````````
-
-Issue #114: cmark skipping first character in line
-(Important: the blank lines around "Repeatedly" contain a tab.)
-
-```````````````````````````````` example
-By taking it apart
-
-- alternative solutions
-→
-Repeatedly solving
-→
-- how techniques
-.
-<p>By taking it apart</p>
-<ul>
-<li>alternative solutions</li>
-</ul>
-<p>Repeatedly solving</p>
-<ul>
-<li>how techniques</li>
-</ul>
-````````````````````````````````
-
-Issue jgm/CommonMark#430: h2..h6 not recognized as block tags.
-
-```````````````````````````````` example
-<h1>lorem</h1>
-
-<h2>lorem</h2>
-
-<h3>lorem</h3>
-
-<h4>lorem</h4>
-
-<h5>lorem</h5>
-
-<h6>lorem</h6>
-.
-<h1>lorem</h1>
-<h2>lorem</h2>
-<h3>lorem</h3>
-<h4>lorem</h4>
-<h5>lorem</h5>
-<h6>lorem</h6>
-````````````````````````````````
-
-Issue jgm/commonmark.js#109 - tabs after setext header line
-
-
-```````````````````````````````` example
-hi
---→
-.
-<h2>hi</h2>
-````````````````````````````````
-
-Issue #177 - incorrect emphasis parsing
-
-```````````````````````````````` example
-a***b* c*
-.
-<p>a*<em><em>b</em> c</em></p>
-````````````````````````````````
-
-Issue #193 - unescaped left angle brackets in link destination
-
-```````````````````````````````` example
-[a]
-
-[a]: <te<st>
-.
-<p>[a]</p>
-<p>[a]: &lt;te<st></p>
-````````````````````````````````
-
-Issue #192 - escaped spaces in link destination
-
-
-```````````````````````````````` example
-[a](te\ st)
-.
-<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](&lt;&lt;b)</p>
-<p>[a](&lt;b
-)</p>
-````````````````````````````````
-
-Issue commonmark#526 - unescaped ( in link title
-
-```````````````````````````````` example
-[link](url ((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](&lt;b) c&gt;</p>
-````````````````````````````````
-
-Issue #334 - UTF-8 BOM
-
-```````````````````````````````` example
-# Hi
-.
-<h1>Hi</h1>
-````````````````````````````````