diff options
| author | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-10-11 10:34:24 -0400 |
|---|---|---|
| committer | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-10-11 10:34:24 -0400 |
| commit | 5571dc766e2143e39762ff0b47c41d1c2e154f4c (patch) | |
| tree | f4f124d314a7e76c04484515aa0fd1f2e271a601 /vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span | |
| parent | 359f3309c97fc894b63e0a295c76ab298504d635 (diff) | |
Vendor bundled gems for deployment
Diffstat (limited to 'vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span')
158 files changed, 1687 insertions, 0 deletions
diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty.html new file mode 100644 index 0000000..a1102ea --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty.html @@ -0,0 +1,5 @@ +<p>This is [] empty.</p> + +<p>This is [][] empty.</p> + +<p>This is <a href="test.html"></a> empty.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty.text new file mode 100644 index 0000000..cca5de5 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty.text @@ -0,0 +1,5 @@ +This is [] empty. + +This is [][] empty. + +This is [](test.html) empty. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty_title.htmlinput b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty_title.htmlinput new file mode 100644 index 0000000..b95b2cc --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty_title.htmlinput @@ -0,0 +1,3 @@ +<p>Image with empty title: <img src="/images/other.png" alt="alt text" title="" /></p> + +<p>Link <a href="http://example.tld" title="">reference</a> with empty title.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty_title.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty_title.text new file mode 100644 index 0000000..baabe7d --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/empty_title.text @@ -0,0 +1,7 @@ +Image with empty title:  + +Link [reference][1] with empty title. + + + +[1]: http://example.tld diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/image_in_a.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/image_in_a.html new file mode 100644 index 0000000..e1f4ade --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/image_in_a.html @@ -0,0 +1,5 @@ +<p>Simple: <a href="local.html">Some <img src="/images/other.png" alt="alt text" /></a></p> + +<p>Nested: <a href="local.html">Some <img src="/images/other.png" alt="alt  text" /></a></p> + +<p>Simple: <a href="local.html">Some <em>text <img src="/images/other.png" alt="alt text" /> text</em></a></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/image_in_a.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/image_in_a.text new file mode 100644 index 0000000..bdbfb65 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/image_in_a.text @@ -0,0 +1,5 @@ +Simple: [Some ](local.html) + +Nested: [Some  text](/images/other.png)](local.html) + +Simple: [Some *text  text*](local.html) diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/imagelinks.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/imagelinks.html new file mode 100644 index 0000000..565d36f --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/imagelinks.html @@ -0,0 +1,15 @@ +<p>Simple: <img src="/images/other.png" alt="alt text" /></p> + +<p>Simple with title: <img src="/images/other.png" alt="alt text" title="title" /></p> + +<p>Empty img link: <img src="" alt="alt text" /></p> + +<p>Reference style: <img src="other.png" alt="alt text" /></p> + +<p>Reference style with title: <img src="other.png" alt="alt text" title="Title" /></p> + +<p>No alt text: <img src="other.png" alt="" /></p> + +<p>No id: <img src="other.png" alt="imgo" title="Title" /></p> + +<p>With escaped pipe: <img src="other.png" alt="an | pipe" /></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/imagelinks.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/imagelinks.text new file mode 100644 index 0000000..05050a2 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/imagelinks.text @@ -0,0 +1,18 @@ +Simple:  + +Simple with title:  + +Empty img link: ![alt text]() + +Reference style: ![alt text][img] + +Reference style with title: ![alt text][imgo] + +No alt text:  + +No id: ![imgo] + +[img]: other.png +[imgo]: other.png "Title" + +With escaped pipe:  diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/inline.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/inline.html new file mode 100644 index 0000000..8d00efa --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/inline.html @@ -0,0 +1,46 @@ +<p>simple <a href="">URL</a></p> + +<p>simple <a href="something.html">URL</a></p> + +<p>simple <a href="something.html">URL <em>with</em> formatting</a></p> + +<p>simple <a href="something.html" title="a t"itle">URL with single quoted title</a></p> + +<p>simple <a href="something.html" title="a t'itle">URL with double quoted title</a></p> + +<p>simple <a href="something.html">URL [with ] escaped</a></p> + +<p>simple <a href="something.html">URL with ] escaped</a></p> + +<p>simple <a href="something.html">URL [with] nested</a></p> + +<p>simple <a href="something.html">URL with [no](link.html) inside</a></p> + +<p>simple <a href="/something/to(do)">URL with parens</a></p> + +<p>simple <a href="/something/to(do" title="doit">URL with parens</a></p> + +<p>simple <a href="something.html" title="title">URL broken +on line</a></p> + +<p>simple <a href="with spaces.html">URL with spaces</a></p> + +<p>simple <a href="with spaces.html" title="title">URL with spaces</a></p> + +<p>simple <a href="with (spaces).html">URL with spaces</a></p> + +<p>simple <a href="spaces.html">leading/trailing spaces</a></p> + +<p>simple <a href="spaces.html">leading/trailing spaces</a></p> + +<p>simple <a href="spaces.html">leading/trailing spaces</a></p> + +<p>bad [URL <a href="something.html">not</a></p> + +<p>bad [URL with parens](something(new.html)</p> + +<p>bad [URL with empty title](something.html ‘’)</p> + +<p>bad [URL](</p> + +<p>bad [URL](no</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/inline.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/inline.text new file mode 100644 index 0000000..c705764 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/inline.text @@ -0,0 +1,48 @@ +simple [URL]() + +simple [URL](something.html) + +simple [URL *with* formatting](something.html) + +simple [URL with single quoted title](something.html 'a t"itle') + +simple [URL with double quoted title](something.html "a t'itle") + +simple [URL \[with \] escaped](something.html) + +simple [URL with \] escaped](something.html) + +simple [URL [with] nested](something.html) + +simple [URL with [no](link.html) inside](something.html) + +simple [URL with parens](/something/to(do)) + +simple [URL with parens](/something/to(do "doit") + +simple [URL broken +on line](something.html +"title") + +simple [URL with spaces](with spaces.html) + +simple [URL with spaces](with spaces.html 'title') + +simple [URL with spaces](with (spaces).html) + +simple [leading/trailing spaces]( spaces.html) + +simple [leading/trailing spaces](spaces.html ) + +simple [leading/trailing spaces]( spaces.html ) + + +bad [URL [not](something.html) + +bad [URL with parens](something(new.html) + +bad [URL with empty title](something.html '') + +bad [URL]( + +bad [URL](no diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/latex_escaping.latex b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/latex_escaping.latex new file mode 100644 index 0000000..63e58e7 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/latex_escaping.latex @@ -0,0 +1,6 @@ +\href{https://example.com/~tilde/}{https://example.com/\ensuremath{\sim}tilde/} + +\href{http://example.com/percent\%20percent}{http://example.com/percent\%20percent} + +\href{http://example.com/hash#hash}{http://example.com/hash\#hash} + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/latex_escaping.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/latex_escaping.text new file mode 100644 index 0000000..9b27ae8 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/latex_escaping.text @@ -0,0 +1,5 @@ +<https://example.com/~tilde/> + +<http://example.com/percent%20percent> + +<http://example.com/hash#hash> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs.html new file mode 100644 index 0000000..15e2ca7 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs.html @@ -0,0 +1,9 @@ +<p>This is a para. +[id]: http://www.example.com/</p> + +<pre><code>[4]: nourl +</code></pre> + +<p>Points to <a href="one.url">1</a> and <a href="two.url">2</a> and <a href="three.url">3</a> but not [4]</p> + +<p>Points to <a href="http://example.com">_.:,;!?-</a> and <a href="test.html#'test'" title="title">otherid8</a></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs.text new file mode 100644 index 0000000..16a25b5 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs.text @@ -0,0 +1,27 @@ +This is a para. +[id]: http://www.example.com/ + +[otherid1]: http://wwww.example.com/ "title 1" +[otherid2]: http://wwww.example.com/ 'title 2' +[otherid3]: <some spaces.html> +[otherid4]: <some spaces.html> 'title' +[otherid5]: some spaces.html +[otherid6]: some spaces.html 'title' +[otherid7]: some spaces + "title" +[otherid8]:test.html#'test' 'title' + +[break]: http://www.example.com/test/asdf.html + 'Another title' + +[1]: ignored.url + [1]: one.url + [2]: two.url + [3]: three.url + [4]: nourl + +Points to [1] and [2] and [3] but not [4] + +[_.:,;!?-]: http://example.com + +Points to [_.:,;!?-] and [otherid8] diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs_with_ial.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs_with_ial.html new file mode 100644 index 0000000..f56d77d --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs_with_ial.html @@ -0,0 +1,4 @@ +<p>Link def with <a hreflang="en" class="test" href="http://example.com" title="title">attr</a> and <a hreflang="en" class="test" href="http://example.com" title="title">attr 2</a> and <a class="test" href="http://example.com">attr 3</a> and <a hreflang="en" class="test" href="http://example.com">attr before</a></p> + +<p>test</p> + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs_with_ial.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs_with_ial.text new file mode 100644 index 0000000..59398a3 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/link_defs_with_ial.text @@ -0,0 +1,16 @@ +Link def with [attr] and [attr 2] and [attr 3] and [attr before] + +[attr]: http://example.com 'title' +{: hreflang="en" .test} + +[attr 2]: http://example.com 'title' +{: hreflang="en"} +{: .test} + +[attr 3]: http://example.com +{: .test} +test + +{: hreflang="en"} +{: .test} +[attr before]: http://example.com diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/links_with_angle_brackets.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/links_with_angle_brackets.html new file mode 100644 index 0000000..ecaa31e --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/links_with_angle_brackets.html @@ -0,0 +1,3 @@ +<p>This is a <a href="with angle.html">link</a>.</p> + +<p>This is a <a href="with angle.html" title="and title">link</a>.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/links_with_angle_brackets.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/links_with_angle_brackets.text new file mode 100644 index 0000000..2cf0ece --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/links_with_angle_brackets.text @@ -0,0 +1,3 @@ +This is a [link](<with angle.html>). + +This is a [link](<with angle.html> 'and title'). diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.html new file mode 100644 index 0000000..f6fed18 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.html @@ -0,0 +1,37 @@ + +<p>simple <a href="otherurl.html">URL</a> and <a href="someurl.html">URL</a></p> + +<p>simple <a href="otherurl.html">URL</a> and <a href="someurl.html">URL</a></p> + +<p>simple <a href="otherurl.html">1</a> and <a href="someurl.html">isurl</a></p> + +<p>simple <a href="otherurl.html">1</a> and <a href="someurl.html">isurl</a></p> + +<p>this is [a holy <a href="someurl.html">isurl</a>]</p> + +<p>no [resolution][] here and [here]</p> + +<p>with a <a href="url.html">break in +the text</a></p> + +<p>this not [isurl] and not [isurl]</p> + +<p>a <a href="letters.html" title="This is the title">Link with_BIG</a> letters</p> + +<p>bad [no URL] d <a href="someurl.html">isurl</a></p> + +<p>[no url] invalid.html +[no url]:</p> + +<p>“title”</p> + +<p>test <a href="invalid.html">url but no title</a> +test [urldef]</p> + +<p>[urldef]: some.url ‘title”</p> + +<p>some <a href="with spaces.html" title="title">with spaces</a></p> + +<p>this <a href="occasion.html">is a ‘special’ occasion for /all/ of us</a></p> + +<p>this is <a href="predefined.html">predefined</a> for <a href="uri.html" title="My URI">URI</a></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.options new file mode 100644 index 0000000..efb4b01 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.options @@ -0,0 +1,3 @@ +:link_defs: + predefined: [predefined.html] + URI: [uri.html, My URI] diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.text new file mode 100644 index 0000000..9f39fa7 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/01_link/reference.text @@ -0,0 +1,53 @@ +[isurl]: someurl.html + [1]: otherurl.html + +simple [URL][1] and [URL][isurl] + +simple [URL] [1] and [URL] +[isurl] + +simple [1][] and [isurl][] + +simple [1] and [isurl] + +this is [a holy [isurl]] + +no [resolution][] here and [here] + +with a [break in +the text] + + [break in the text]: url.html + +this not \[isurl] and not [isurl\] + +a [Link with_BIG] letters + + [link WITH_big]: letters.html + 'This is the title' + +bad [no URL] d [isurl] + +[no url] invalid.html +[no url]: + +[URL but no title]: invalid.html + + "title" + +test [url but no title] +test [urldef] + +[urldef]: some.url 'title" + + +some [with spaces] + +[with spaces]: with spaces.html "title" + +this [is a 'special' occasion for /all/ of us] + +[is a 'special' occasion for /all/ of us]: occasion.html + + +this is [predefined] for [URI] diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/empty.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/empty.html new file mode 100644 index 0000000..127e694 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/empty.html @@ -0,0 +1,3 @@ +<p>This __is **empty.</p> + +<p>This <em>**</em>is empty.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/empty.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/empty.text new file mode 100644 index 0000000..c99d053 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/empty.text @@ -0,0 +1,3 @@ +This __is **empty. + +This ****is empty. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/errors.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/errors.html new file mode 100644 index 0000000..e62f03f --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/errors.html @@ -0,0 +1,9 @@ +<p>This is a *star.</p> + +<p>This is a **star.</p> + +<p>This is <em>*a *star</em>.</p> + +<p>This is *a star*.</p> + +<p>This** is** a star.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/errors.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/errors.text new file mode 100644 index 0000000..e80e5eb --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/errors.text @@ -0,0 +1,9 @@ +This is a *star. + +This is a **star. + +This is **a *star*. + +This is *a star\*. + +This** is** a star. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/nesting.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/nesting.html new file mode 100644 index 0000000..3d34cee --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/nesting.html @@ -0,0 +1,41 @@ +<ul> + <li><strong><em>test test</em></strong></li> + <li><strong><em>test test</em></strong></li> + <li><em>test <strong>test</strong></em></li> + <li><strong>test <em>test</em></strong></li> + <li><strong><em>test</em> test</strong></li> + <li><em><strong>test</strong> test</em></li> + <li><strong><em>test</em> test</strong></li> + <li><strong>test <em>test</em></strong></li> + <li><em>test <strong>test</strong></em></li> + <li><em>test <strong>test</strong></em></li> + <li><strong>test <em>test</em></strong></li> + <li><strong><em>test</em> test</strong></li> + <li><em><strong>test</strong> test</em></li> + <li><strong><em>test</em> test</strong></li> + <li><strong>test <em>test</em></strong></li> + <li><em>test <strong>test</strong></em></li> +</ul> +<ul> + <li><em>a</em>b</li> + <li>a<em>b</em></li> + <li>a<em>b</em>c</li> + <li><strong>a</strong>b</li> + <li>a<strong>b</strong></li> + <li>a<strong>b</strong>c</li> +</ul> +<ul> + <li>_a_b</li> + <li>a_b_</li> + <li>a_b_c</li> + <li>__a__b</li> + <li>a__b__</li> + <li>a__b__c</li> + <li>a__2__c</li> + <li>a__2__3</li> + <li>1__2__3</li> +</ul> +<ul> + <li><em>a _b_ c</em></li> + <li><strong>a __b__ c</strong></li> +</ul> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/nesting.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/nesting.text new file mode 100644 index 0000000..ba67e84 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/nesting.text @@ -0,0 +1,36 @@ +- ***test test*** +- ___test test___ +- *test **test*** +- **test *test*** +- ***test* test** +- ***test** test* +- ***test* test** +- **test *test*** +- *test **test*** +- _test __test___ +- __test _test___ +- ___test_ test__ +- ___test__ test_ +- ___test_ test__ +- __test _test___ +- _test __test___ +^ +- *a*b +- a*b* +- a*b*c +- **a**b +- a**b** +- a**b**c +^ +- _a_b +- a_b_ +- a_b_c +- __a__b +- a__b__ +- a__b__c +- a__2__c +- a__2__3 +- 1__2__3 +^ +- *a _b_ c* +- **a __b__ c** diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.html new file mode 100644 index 0000000..b7ddf43 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.html @@ -0,0 +1,70 @@ +<p>This <em>is</em> so <strong>hard</strong>.</p> + +<p>This <em>is</em> so <strong>hard</strong> too.</p> + +<p><em>At</em> start +<em>At</em> start</p> + +<p>At <em>end</em> +At <em>end</em></p> + +<p><em>At</em> start +<em>At</em> start</p> + +<p>At <em>end</em> +At <em>end</em></p> + +<p>And <em>nest<strong>ed</strong></em>.</p> + +<p>And <em>nest**ed</em>.</p> + +<p>And *nest<strong>ed* like</strong> this.</p> + +<p>And <em>not_nest_ed</em>.</p> + +<p>And <strong><em>nested</em></strong>.</p> + +<p>And <strong><em>nested</em></strong>.</p> + +<p>And <strong>nest<em>e</em></strong>.</p> + +<p>And lonely * here*.</p> + +<p>And lonely ** here**.</p> + +<p>And <strong>lonely ** here</strong>.</p> + +<p>** and here**.</p> + +<p>And <strong>compli*cated *</strong> here</p> + +<p>Some<em>**what</em> more * <em>**he</em>re</p> + +<p>Do it <em>*this*</em> way +Or this *<em>this</em>* way +Or that <em>*that</em>* way +Or that *<em>that*</em> way</p> + +<p><a href="http://blah.com/blah_%28">http://blah.com/blah_%28</a> +<a href="http://blah.com/blah__%28">http://blah.com/blah__%28</a> +<a href="http://blah.com/blah___%28">http://blah.com/blah___%28</a> +<a href="http://blah.com/blah____%28">http://blah.com/blah____%28</a> +<a href="http://blah.com/blah_____%28">http://blah.com/blah_____%28</a> +<a href="http://blah.com/blah______%28">http://blah.com/blah______%28</a></p> + +<p><a href="A_-B">A-_B</a></p> + +<ul> + <li><em>test</em></li> + <li>‘<em>test</em>’</li> + <li>“<em>test</em>”</li> + <li>(“<em>test</em>”)</li> + <li>(<em>test</em>)</li> + <li>“<em>test</em>”</li> + <li>`<em>test</em>’</li> + <li>„<em>test</em>“</li> +</ul> + +<p>it–by design–<em>cannot have side-effects</em>.</p> + +<p>it—by design—<em>cannot have side-effects</em>.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.options new file mode 100644 index 0000000..2e6e0a1 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.options @@ -0,0 +1 @@ +:entity_output: :numeric diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.text new file mode 100644 index 0000000..a242125 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/02_emphasis/normal.text @@ -0,0 +1,68 @@ +This *is* so **hard**. + +This _is_ so __hard__ too. + +*At* start +*At* start + +At *end* +At *end* + +_At_ start +_At_ start + +At _end_ +At _end_ + +And *nest**ed***. + +And *nest**ed*. + +And *nest**ed* like** this. + +And *not_nest_ed*. + +And ***nested***. + +And ___nested___. + +And **nest*e***. + +And lonely * here*. + +And lonely ** here**. + +And **lonely ** here**. + +** and here**. + +And **compli*cated \*** here + +Some***what* more * ***he*re + +Do it *\*this\** way +Or this \**this*\* way +Or that *\*that*\* way +Or that \**that\** way + +[http://blah.com/blah_%28](http://blah.com/blah_%28) +[http://blah.com/blah__%28](http://blah.com/blah__%28) +[http://blah.com/blah___%28](http://blah.com/blah___%28) +[http://blah.com/blah____%28](http://blah.com/blah____%28) +[http://blah.com/blah_____%28](http://blah.com/blah_____%28) +[http://blah.com/blah______%28](http://blah.com/blah______%28) + +[A-_B](A_-B) + +- _test_ +- '_test_' +- "_test_" +- ("_test_") +- (_test_) +- “_test_” +- \`_test_' +- „_test_“ + +it--by design--_cannot have side-effects_. + +it---by design---_cannot have side-effects_. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/empty.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/empty.html new file mode 100644 index 0000000..20c5051 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/empty.html @@ -0,0 +1,5 @@ +<p>This is `` empty.</p> + +<p>This is ``empty.</p> + +<p>This is ````empty.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/empty.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/empty.text new file mode 100644 index 0000000..cbb9152 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/empty.text @@ -0,0 +1,5 @@ +This is `` empty. + +This is ``empty. + +This is ````empty. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/errors.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/errors.html new file mode 100644 index 0000000..1d341a8 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/errors.html @@ -0,0 +1 @@ +<p>Not ended `span.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/errors.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/errors.text new file mode 100644 index 0000000..7a948b4 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/errors.text @@ -0,0 +1 @@ +Not ended `span. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.latex b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.latex new file mode 100644 index 0000000..a1f84d9 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.latex @@ -0,0 +1,2 @@ +You can say \mintinline{ruby}{x = Class.new}, for example. + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.options new file mode 100644 index 0000000..c11ebb6 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.options @@ -0,0 +1 @@ +:syntax_highlighter: minted diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.text new file mode 100644 index 0000000..7373290 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting-minted.text @@ -0,0 +1 @@ +You can say `x = Class.new`{:.language-ruby}, for example. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting.html new file mode 100644 index 0000000..4294542 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting.html @@ -0,0 +1 @@ +<p>You can say <code class="language-ruby highlighter-rouge"><span class="n">x</span> <span class="o">=</span> <span class="no">Class</span><span class="p">.</span><span class="nf">new</span></code>, for example.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting.text new file mode 100644 index 0000000..7373290 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/highlighting.text @@ -0,0 +1 @@ +You can say `x = Class.new`{:.language-ruby}, for example. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.html new file mode 100644 index 0000000..ec21686 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.html @@ -0,0 +1 @@ +<p>This is a <code class="highlighter-rouge">code-span</code></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.options new file mode 100644 index 0000000..bfc92f4 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.options @@ -0,0 +1,2 @@ +:syntax_highlighter_opts: + guess_lang: true diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.text new file mode 100644 index 0000000..f704439 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal-css-class.text @@ -0,0 +1 @@ +This is a `code-span` diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal.html new file mode 100644 index 0000000..6de2257 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal.html @@ -0,0 +1,20 @@ +<p>This is <code>a</code> simple span.</p> + +<p>With <code>some<ht>&ml</code> in it.</p> + +<p>And <code>`</code> backticks.</p> + +<p>And <code>``some``</code> more.</p> + +<p>With backslash <code>in\</code> it.</p> + +<p>This is a ` literal backtick. +As `are` these!</p> + +<p>No <code>literal backtick</code>.</p> + +<p><code>something</code></p> + +<p>` `</p> + +<p>a ` `</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal.text new file mode 100644 index 0000000..c188959 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/normal.text @@ -0,0 +1,20 @@ +This is `a` simple span. + +With `some<ht>&ml` in it. + +And `` ` `` backticks. + +And ``` ``some`` ``` more. + +With backslash `in\` it. + +This is a ` literal backtick. +As \`are\` these! + +No `` literal backtick``. + +`something` + +` ` + +a ` ` diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.html new file mode 100644 index 0000000..7822f78 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.html @@ -0,0 +1 @@ +<p>You can say <code class="language-ruby">Class</code>.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.options new file mode 100644 index 0000000..34094e9 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.options @@ -0,0 +1,4 @@ +:syntax_highlighter: rouge +:syntax_highlighter_opts: + span: + disable: true diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.text new file mode 100644 index 0000000..d958d91 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/disabled.text @@ -0,0 +1 @@ +You can say `Class`{:.language-ruby}. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.html new file mode 100644 index 0000000..4294542 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.html @@ -0,0 +1 @@ +<p>You can say <code class="language-ruby highlighter-rouge"><span class="n">x</span> <span class="o">=</span> <span class="no">Class</span><span class="p">.</span><span class="nf">new</span></code>, for example.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.options new file mode 100644 index 0000000..9ac61e7 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.options @@ -0,0 +1 @@ +:syntax_highlighter: rouge diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.text new file mode 100644 index 0000000..7373290 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/03_codespan/rouge/simple.text @@ -0,0 +1 @@ +You can say `x = Class.new`{:.language-ruby}, for example. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.html new file mode 100644 index 0000000..f18212b --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.html @@ -0,0 +1,79 @@ +<p>This is <sup id="fnref:paragraph"><a href="#fn:paragraph" class="footnote" rel="footnote" role="doc-noteref">1</a></sup><sup id="fnref:header"><a href="#fn:header" class="footnote" rel="footnote" role="doc-noteref">2</a></sup><sup id="fnref:blockquote"><a href="#fn:blockquote" class="footnote" rel="footnote" role="doc-noteref">3</a></sup><sup id="fnref:codeblock"><a href="#fn:codeblock" class="footnote" rel="footnote" role="doc-noteref">4</a></sup><sup id="fnref:list"><a href="#fn:list" class="footnote" rel="footnote" role="doc-noteref">5</a></sup><sup id="fnref:table"><a href="#fn:table" class="footnote" rel="footnote" role="doc-noteref">6</a></sup><sup id="fnref:hrule"><a href="#fn:hrule" class="footnote" rel="footnote" role="doc-noteref">7</a></sup><sup id="fnref:mathblock"><a href="#fn:mathblock" class="footnote" rel="footnote" role="doc-noteref">8</a></sup><sup id="fnref:html"><a href="#fn:html" class="footnote" rel="footnote" role="doc-noteref">9</a></sup></p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:paragraph"> + + <p>A paragraph <a href="#fnref:paragraph" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:header"> + + <h1 id="a-header">A header <a href="#fnref:header" class="reversefootnote" role="doc-backlink">↩</a></h1> + </li> + <li id="fn:blockquote"> + + <blockquote> + <p>blockquote</p> + + <p>paragraph <a href="#fnref:blockquote" class="reversefootnote" role="doc-backlink">↩</a></p> + </blockquote> + </li> + <li id="fn:codeblock"> + + <pre><code>codeblock +</code></pre> + <p><a href="#fnref:codeblock" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:list"> + + <ul> + <li>item 1</li> + <li>item 2 + <ul> + <li> + <p>sub item</p> + + <blockquote> + <p>blockquote</p> + + <h1 id="header">header <a href="#fnref:list" class="reversefootnote" role="doc-backlink">↩</a></h1> + </blockquote> + </li> + </ul> + </li> + </ul> + </li> + <li id="fn:table"> + + <table> + <tbody> + <tr> + <td>a</td> + <td>b</td> + </tr> + <tr> + <td>c</td> + <td>d</td> + </tr> + </tbody> + </table> + <p><a href="#fnref:table" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:hrule"> + + <hr /> + <p><a href="#fnref:hrule" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:mathblock"> + +\[x + 2\] + <p><a href="#fnref:mathblock" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:html"> + + <div>test +</div> + <p><a href="#fnref:html" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.options new file mode 100644 index 0000000..ac54fc0 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.options @@ -0,0 +1 @@ +footnote_backlink_inline: true diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.text new file mode 100644 index 0000000..55f94a3 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_inline.text @@ -0,0 +1,38 @@ +This is [^paragraph][^header][^blockquote][^codeblock][^list][^table][^hrule][^mathblock][^html] + +[^paragraph]: + A paragraph + +[^header]: + # A header + +[^blockquote]: + > blockquote + > + > paragraph + +[^codeblock]: + codeblock + +[^list]: + * item 1 + * item 2 + * sub item + + > blockquote + > + > # header + +[^table]: + | a | b | + | c | d | + +[^hrule]: + *** + +[^mathblock]: + $$x + 2$$ + +[^html]: + <div>test + </div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.html new file mode 100644 index 0000000..bed0869 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.html @@ -0,0 +1,9 @@ +<p>Some footnote here<sup id="fnref:fn"><a href="#fn:fn" class="footnote" rel="footnote" role="doc-noteref">1</a></sup></p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:fn"> + <p>Some text here <a href="#fnref:fn" class="reversefootnote" role="doc-backlink">text &8617; <img /></a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.options new file mode 100644 index 0000000..4c677ef --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.options @@ -0,0 +1 @@ +:footnote_backlink: 'text &8617; <img />' diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.text new file mode 100644 index 0000000..41a6f98 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/backlink_text.text @@ -0,0 +1,3 @@ +Some footnote here[^fn] + +[^fn]: Some text here diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.html new file mode 100644 index 0000000..9012cc0 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.html @@ -0,0 +1,17 @@ +<p>Some para.</p> + +<blockquote> + <p>blockquote</p> +</blockquote> + +<ul> + <li>a list +with some text</li> +</ul> + +<ul> + <li>other list</li> +</ul> +<pre><code>code +</code></pre> + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.latex b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.latex new file mode 100644 index 0000000..965653c --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.latex @@ -0,0 +1,17 @@ +Some para. + +\begin{quote} +blockquote +\end{quote} + +\begin{itemize} +\item{} a list +with some text +\end{itemize} + +\begin{itemize} +\item{} other list +\end{itemize} +\begin{verbatim}code +\end{verbatim} + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.text new file mode 100644 index 0000000..44b52e0 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/definitions.text @@ -0,0 +1,24 @@ +Some para. + +[^footnote]: ignored definition +[^footnote]: Some footnote text + +> blockquote + +[^other]: some + foot + + note text + +* a list + with some text + +[^tnote]: foot note + +* other list +^ + code + +[^1]: + > a blockquote + and some para diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.html new file mode 100644 index 0000000..0867c86 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.html @@ -0,0 +1,12 @@ +<p>This is a<sup id="fnref:ab"><a href="#fn:ab" class="footnote" rel="footnote" role="doc-noteref">[footnote 1]</a></sup> footnote<sup id="fnref:ab:1"><a href="#fn:ab" class="footnote" rel="footnote" role="doc-noteref">[footnote 1]</a></sup>. And another<sup id="fnref:bc"><a href="#fn:bc" class="footnote" rel="footnote" role="doc-noteref">[footnote 2]</a></sup>.</p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:ab"> + <p>Some text. <a href="#fnref:ab" class="reversefootnote" role="doc-backlink">↩</a> <a href="#fnref:ab:1" class="reversefootnote" role="doc-backlink">↩<sup>2</sup></a></p> + </li> + <li id="fn:bc"> + <p>Some other text. <a href="#fnref:bc" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.options new file mode 100644 index 0000000..092fd1a --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.options @@ -0,0 +1 @@ +:footnote_link_text: "[footnote %s]" diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.text new file mode 100644 index 0000000..3876de0 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_link_text.text @@ -0,0 +1,4 @@ +This is a[^ab] footnote[^ab]. And another[^bc]. + +[^ab]: Some text. +[^bc]: Some other text.
\ No newline at end of file diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.html new file mode 100644 index 0000000..77c0a84 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.html @@ -0,0 +1,12 @@ +<p>This is a footnote<sup id="fnref:ab"><a href="#fn:ab" class="footnote" rel="footnote" role="doc-noteref">35</a></sup>. And another<sup id="fnref:bc"><a href="#fn:bc" class="footnote" rel="footnote" role="doc-noteref">36</a></sup>.</p> + +<div class="footnotes" role="doc-endnotes"> + <ol start="35"> + <li id="fn:ab"> + <p>Some text. <a href="#fnref:ab" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:bc"> + <p>Some other text. <a href="#fnref:bc" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.latex b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.latex new file mode 100644 index 0000000..8f07dde --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.latex @@ -0,0 +1,2 @@ +This is a footnote\footnote{Some text.}. And another\footnote{Some other text.}. + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.options new file mode 100644 index 0000000..f606ecf --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.options @@ -0,0 +1 @@ +:footnote_nr: 35 diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.text new file mode 100644 index 0000000..cad2935 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_nr.text @@ -0,0 +1,4 @@ +This is a footnote[^ab]. And another[^bc]. + +[^ab]: Some text. +[^bc]: Some other text. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.html new file mode 100644 index 0000000..90aa226 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.html @@ -0,0 +1,12 @@ +<p>This is a<sup id="fnref:adf123-ab"><a href="#fn:adf123-ab" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> footnote<sup id="fnref:adf123-ab:1"><a href="#fn:adf123-ab" class="footnote" rel="footnote" role="doc-noteref">1</a></sup>. And another<sup id="fnref:adf123-bc"><a href="#fn:adf123-bc" class="footnote" rel="footnote" role="doc-noteref">2</a></sup>.</p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:adf123-ab"> + <p>Some text. <a href="#fnref:adf123-ab" class="reversefootnote" role="doc-backlink">↩</a> <a href="#fnref:adf123-ab:1" class="reversefootnote" role="doc-backlink">↩<sup>2</sup></a></p> + </li> + <li id="fn:adf123-bc"> + <p>Some other text. <a href="#fnref:adf123-bc" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.options new file mode 100644 index 0000000..51d78bc --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.options @@ -0,0 +1 @@ +:footnote_prefix: adf123- diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.text new file mode 100644 index 0000000..884053e --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/footnote_prefix.text @@ -0,0 +1,4 @@ +This is a[^ab] footnote[^ab]. And another[^bc]. + +[^ab]: Some text. +[^bc]: Some other text. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/inside_footnote.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/inside_footnote.html new file mode 100644 index 0000000..d4e97ff --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/inside_footnote.html @@ -0,0 +1,17 @@ +<p>Lorem ipsum<sup id="fnref:first"><a href="#fn:first" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> dolor sit amet.</p> + +<p>Lorem ipsum<sup id="fnref:second"><a href="#fn:second" class="footnote" rel="footnote" role="doc-noteref">2</a></sup> dolor sit amet.</p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:first"> + <p>Consecutur adisping.<sup id="fnref:third"><a href="#fn:third" class="footnote" rel="footnote" role="doc-noteref">3</a></sup> <a href="#fnref:first" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:second"> + <p>Sed ut perspiciatis unde omnis. <a href="#fnref:second" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:third"> + <p>Sed ut. <a href="#fnref:third" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/inside_footnote.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/inside_footnote.text new file mode 100644 index 0000000..f4f91e9 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/inside_footnote.text @@ -0,0 +1,9 @@ +Lorem ipsum[^first] dolor sit amet. + +Lorem ipsum[^second] dolor sit amet. + +[^first]: Consecutur adisping.[^third] + +[^second]: Sed ut perspiciatis unde omnis. + +[^third]: Sed ut. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.html new file mode 100644 index 0000000..90f2ccb --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.html @@ -0,0 +1,46 @@ +<p>This is some *ref.<sup id="fnref:fn"><a href="#fn:fn" class="footnote" rel="footnote" role="doc-noteref">1</a></sup></p> + +<blockquote> + <p>a blockquote <sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">2</a></sup></p> +</blockquote> + +<ul> + <li>and a list item <sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">3</a></sup></li> +</ul> + +<h1>And a header<sup id="fnref:now"><a href="#fn:now" class="footnote" rel="footnote" role="doc-noteref">4</a></sup></h1> + +<p>A marker without a definition [^without].</p> + +<p>A marker <sup id="fnref:empty"><a href="#fn:empty" class="footnote" rel="footnote" role="doc-noteref">5</a></sup> used twice<sup id="fnref:fn:1"><a href="#fn:fn" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> and thrice<sup id="fnref:fn:2"><a href="#fn:fn" class="footnote" rel="footnote" role="doc-noteref">1</a></sup>.</p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:fn"> + <p>Some foot note text <a href="#fnref:fn" class="reversefootnote" role="doc-backlink">↩</a> <a href="#fnref:fn:1" class="reversefootnote" role="doc-backlink">↩<sup>2</sup></a> <a href="#fnref:fn:2" class="reversefootnote" role="doc-backlink">↩<sup>3</sup></a></p> + </li> + <li id="fn:3"> + <p>other text +with more lines</p> + + <blockquote> + <p>and a quote</p> + </blockquote> + <p><a href="#fnref:3" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:1"> + <p>some <em>text</em> <a href="#fnref:1" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:now"> + + <pre><code>code block +continued here +</code></pre> + <p><a href="#fnref:now" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + <li id="fn:empty"> + + <p><a href="#fnref:empty" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.latex b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.latex new file mode 100644 index 0000000..8f406b8 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.latex @@ -0,0 +1,23 @@ +This is some *ref.\footnote{Some foot note text} + +\begin{quote} +a blockquote \footnote{other text +with more lines + +\begin{quote} +and a quote +\end{quote}} +\end{quote} + +\begin{itemize} +\item{} and a list item \footnote{some \emph{text}} +\end{itemize} + +\section*{And a header\footnote{\begin{verbatim}code block +continued here +\end{verbatim}}} + +A marker without a definition {[}\^{}without{]}. + +A marker \footnote{} used twice\footnote{Some foot note text} and thrice\footnote{Some foot note text}. + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.options new file mode 100644 index 0000000..5cfe250 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.options @@ -0,0 +1,2 @@ +:auto_ids: false +:entity_output: :symbolic diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.text new file mode 100644 index 0000000..42b77fb --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/markers.text @@ -0,0 +1,27 @@ +This is some *ref.[^fn] + +[^fn]: Some foot note text +{: .class} + +> a blockquote [^3] + +* and a list item [^1] + +# And a header[^now] + +[^1]:some *text* +[^3]: other text + with more lines + + > and a quote + +A marker without a definition [^without]. + +A marker [^empty] used twice[^fn] and thrice[^fn]. + +[^now]: + + code block + continued here + +[^empty]: diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.html new file mode 100644 index 0000000..a87f359 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.html @@ -0,0 +1,11 @@ +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:1"> + <p>Footnote \` text <a href="#fnref:1" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> + +<p>Some para with a<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> footnote.</p> + +<p>And another para.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.options new file mode 100644 index 0000000..2e6e0a1 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.options @@ -0,0 +1 @@ +:entity_output: :numeric diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.text new file mode 100644 index 0000000..97c0ab1 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/placement.text @@ -0,0 +1,8 @@ +* footnotes will be placed here +{:footnotes} + +Some para with a[^1] footnote. + +[^1]: Footnote \\\` text + +And another para. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.html new file mode 100644 index 0000000..64ce4ae --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.html @@ -0,0 +1,14 @@ +<h1>Something</h1> +<p>something<sup id="fnref:note1"><a href="#fn:note1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup>.</p> + +<h1>Footnotes</h1> + +<h1>Test</h1> +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:note1"> + + <p>A note <a href="#fnref:note1" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.options new file mode 100644 index 0000000..5cfe250 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.options @@ -0,0 +1,2 @@ +:auto_ids: false +:entity_output: :symbolic diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.text new file mode 100644 index 0000000..6a60c61 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/regexp_problem.text @@ -0,0 +1,52 @@ +# Something +something[^note1]. + +# Footnotes +[^note1]: + A note + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# Test diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.html new file mode 100644 index 0000000..e6f2d79 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.html @@ -0,0 +1,9 @@ +<p>Some footnote here<sup id="fnref:fn"><a href="#fn:fn" class="footnote" rel="footnote" role="doc-noteref">1</a></sup></p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:fn"> + <p>Some text here</p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.options new file mode 100644 index 0000000..0512dd6 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.options @@ -0,0 +1 @@ +:footnote_backlink: '' diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.text new file mode 100644 index 0000000..41a6f98 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/04_footnote/without_backlink.text @@ -0,0 +1,3 @@ +Some footnote here[^fn] + +[^fn]: Some text here diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/across_lines.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/across_lines.html new file mode 100644 index 0000000..e7cec40 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/across_lines.html @@ -0,0 +1 @@ +<p>Link: <a href="test foo">test</a></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/across_lines.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/across_lines.text new file mode 100644 index 0000000..8f39d95 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/across_lines.text @@ -0,0 +1,2 @@ +Link: <a href="test +foo">test</a> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/button.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/button.html new file mode 100644 index 0000000..c49bb52 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/button.html @@ -0,0 +1,7 @@ +<p><button>Some Text</button></p> + +<p>First some text and then a <button>here</button></p> + +<p><button>A button</button> and then text.</p> + +<p>A <button>with <strong>some</strong> <code>code</code> in <img src="image.png" alt="alt" /></button> it.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/button.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/button.text new file mode 100644 index 0000000..e0a7783 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/button.text @@ -0,0 +1,7 @@ +<button>Some Text</button> + +First some text and then a <button>here</button> + +<button>A button</button> and then text. + +A <button>with **some** `code` in </button> it. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/invalid.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/invalid.html new file mode 100644 index 0000000..030552f --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/invalid.html @@ -0,0 +1 @@ +<p>This is <span>some text</span></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/invalid.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/invalid.text new file mode 100644 index 0000000..383f0a8 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/invalid.text @@ -0,0 +1 @@ +This is <span>some text diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/link_with_mailto.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/link_with_mailto.html new file mode 100644 index 0000000..7d0d6ad --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/link_with_mailto.html @@ -0,0 +1 @@ +<p>Link: <a href="mailto:test@example.com">text</a></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/link_with_mailto.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/link_with_mailto.text new file mode 100644 index 0000000..fb01619 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/link_with_mailto.text @@ -0,0 +1 @@ +Link: <a href="mailto:test@example.com">text</a> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/mark_element.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/mark_element.html new file mode 100644 index 0000000..b6989b7 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/mark_element.html @@ -0,0 +1,3 @@ +<p>Lorem ipsum.</p> + +<p><mark>Test</mark></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/mark_element.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/mark_element.text new file mode 100644 index 0000000..6ae30e0 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/mark_element.text @@ -0,0 +1,3 @@ +Lorem ipsum. + +<mark>Test</mark> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/markdown_attr.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/markdown_attr.html new file mode 100644 index 0000000..44158c3 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/markdown_attr.html @@ -0,0 +1,6 @@ +<p>This is <span><em>text</em></span> +This is <span>*text*</span> +This is <span><em>text</em></span> +This is <span><em>text</em></span> +This is <span>*nothing* <strong>to <em>fear</em></strong> about</span>. +This is <span><http://example.com></span>.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/markdown_attr.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/markdown_attr.text new file mode 100644 index 0000000..dcc10ff --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/markdown_attr.text @@ -0,0 +1,6 @@ +This is <span markdown="1">*text*</span> +This is <span markdown="0">*text*</span> +This is <span markdown="span">*text*</span> +This is <span markdown="block">*text*</span> +This is <span markdown="0">*nothing* <strong markdown="1">to *fear*</strong> about</span>. +This is <span markdown="0"><http://example.com></span>. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/normal.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/normal.html new file mode 100644 index 0000000..3cdc646 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/normal.html @@ -0,0 +1,43 @@ +<p>Empty <a name="anchor" id="anchor" class=""></a>!</p> + +<p><a href="test">title</a> is a title.</p> + +<p>This is <? a PI ?>.</p> + +<p>This is <!-- a --> comment.</p> + +<p>This is <!-- a +--> multiline comment.</p> + +<p>This is <span>tag +now </span>.</p> + +<p>This is <span>tag +</span> now.</p> + +<p>This is an empty <span></span> tag.</p> + +<p>This is <em>something<span test="do_it"></span> strange</em>.</p> + +<p>Auto-closing: <br /></p> + +<p>Expanding: <textarea></textarea></p> + +<p>An invalid tag: <hR></p> + +<p>A <p>block tag</p>.</p> + +<p>An invalid </closing> tag.</p> + +<p>A <script>*not*</script> tag.</p> + +<p>An <span>unclosed <em>tag.</em></span></p> + +<p>Some <code>element with | pipe symbol</code></p> + +<p>Some <span><code>element with | pipe symbol</code></span></p> + +<p>Some <code>element with | pipe +symbol|</code></p> + +<p><u>underlined</u></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/normal.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/normal.text new file mode 100644 index 0000000..0156d7c --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/normal.text @@ -0,0 +1,43 @@ +Empty <a NaMe="anchor" ID="anchor" cLaSs></A>! + +<a href="test">title</a> is a title. + +This is <? a PI ?>. + +This is <!-- a --> comment. + +This is <!-- a +--> multiline comment. + +This is <span>tag +now </span>. + +This is <sPAn>tag +</SPAN> now. + +This is an empty <span></span> tag. + +This is _something<span test="do_it" /> strange_. + +Auto-closing: <br> + +Expanding: <textarea></textarea> + +An invalid tag: <hR> + +A <p>block tag</p>. + +An invalid </closing> tag. + +A <script>*not*</script> tag. + +An <span>unclosed *tag.* + +Some <code>element with | pipe symbol</code> + +Some <span><code>element with | pipe symbol</code></span> + +Some <code>element with | pipe +symbol|</code> + +<u>underlined</u> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/raw_span_elements.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/raw_span_elements.html new file mode 100644 index 0000000..808f1db --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/raw_span_elements.html @@ -0,0 +1,2 @@ +<p>This is raw <kbd>--version</kbd> and <samp>--version</samp> and <var>--version</var> and +<code>---version</code>.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/raw_span_elements.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/raw_span_elements.text new file mode 100644 index 0000000..5b128fc --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/raw_span_elements.text @@ -0,0 +1,2 @@ +This is raw <kbd>--version</kbd> and <samp>--version</samp> and <var>--version</var> and +<code>---version</code>. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/xml.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/xml.html new file mode 100644 index 0000000..00b43c1 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/xml.html @@ -0,0 +1,5 @@ +<p>This <some:url name:spac="hallo">doit</some:url> test</p> + +<p>This <SoMe:UrL NamE:SpAC="test">doit</SoMe:UrL> test</p> + +<p>This <SoMe>doit</some> test</SoMe></p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/xml.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/xml.text new file mode 100644 index 0000000..bc234de --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/05_html/xml.text @@ -0,0 +1,5 @@ +This <some:url name:spac='hallo'>doit</some:url> test + +This <SoMe:UrL NamE:SpAC='test'>doit</SoMe:UrL> test + +This <SoMe>doit</some> test diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev.html new file mode 100644 index 0000000..6bddfda --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev.html @@ -0,0 +1,25 @@ +<p>This <abbr title="It is, yes">is some</abbr> text.</p> + +<p>There <em><abbr title="It is, yes">is some</abbr> real</em> concern about <abbr title="This & that">OtHeR!</abbr></p> + +<p><abbr title="It is, yes">is some</abbr> Think <abbr>empty</abbr> about <abbr title="Very nice country">Oesterreich</abbr>. <abbr title="Cascading">CSS</abbr> und <abbr title="Cascading 3">CSS3</abbr></p> + +<p>no abbrev here because there is someone and kulis some</p> + +<ul> + <li><abbr title="(eXtensible) HyperText Markup Language">(X)HTML</abbr> test</li> + <li>line two</li> +</ul> + +<p><a href="http://en.wikipedia.org/wiki/Xhtml"><abbr title="(eXtensible) HyperText Markup Language">(X)HTML</abbr></a></p> + +<ul> + <li>test <abbr title="(eXtensible) HyperText Markup Language">(X)HTML</abbr></li> +</ul> + +<p>This is <abbr class="testit test" title="Some text here">awesome</abbr>.</p> + +<p>hello <abbr title="baz">foo bar</abbr> babble.</p> + +<p>hello <abbr title="baz">foo +bar</abbr> babble.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev.text new file mode 100644 index 0000000..f5ec88e --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev.text @@ -0,0 +1,41 @@ +This is some text. + +*[is some]: Yes it is +*[OtHeR!]: This & that + +*[is some]: It is, yes +*[empty]: + +There *is some real* concern about OtHeR! + +is some Think empty about Oesterreich. CSS und CSS3 + +no abbrev here because there is someone and kulis some + +*[Oesterreich]: Very nice country + +*[CSS]: Cascading +*[CSS3]: Cascading 3 + +* (X)HTML test +* line two + +[(X)HTML](http://en.wikipedia.org/wiki/Xhtml) + +* test (X)HTML + +*[(X)HTML]: (eXtensible) HyperText Markup Language + + +This is awesome. + +{:.testit} +*[awesome]: Some text here +{:.test} + +*[foo bar]: baz + +hello foo bar babble. + +hello foo +bar babble. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_defs.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_defs.html new file mode 100644 index 0000000..108fcfc --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_defs.html @@ -0,0 +1,2 @@ +<pre><code>*[4]: noabbrev +</code></pre> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_defs.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_defs.text new file mode 100644 index 0000000..3f3a0e5 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_defs.text @@ -0,0 +1,5 @@ +*[ABBR]: Some abbreviations + *[one abbr]: one abbrev + *[2 and other]: another + *[3]: yet another + *[4]: noabbrev diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_in_html.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_in_html.html new file mode 100644 index 0000000..6da3ca4 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_in_html.html @@ -0,0 +1,9 @@ +<p>This is <em>some <abbr title="This Escapes SVG Text.">TEST</abbr></em> to check.</p> + +<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg"> + <text x="20" y="20">This TEST fails.</text> +</svg> +<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg"> + <text x="20" y="20">This <abbr title="This Escapes SVG Text.">TEST</abbr> fails.</text> +</svg> + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_in_html.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_in_html.text new file mode 100644 index 0000000..e0a0e88 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/abbrev_in_html.text @@ -0,0 +1,10 @@ +This is <em>some TEST</em> to check. + +<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg"> + <text x="20" y="20">This TEST fails.</text> +</svg> +<svg width="100" height="30" viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg"> + <text x="20" y="20" markdown="span">This TEST fails.</text> +</svg> + +*[TEST]: This Escapes SVG Text. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/in_footnote.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/in_footnote.html new file mode 100644 index 0000000..7cce8be --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/in_footnote.html @@ -0,0 +1,9 @@ +<p>There is a <abbr title="Text File">TXT</abbr> file here. <sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup></p> + +<div class="footnotes" role="doc-endnotes"> + <ol> + <li id="fn:1"> + <p>A <abbr title="Text File">TXT</abbr> file. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">↩</a></p> + </li> + </ol> +</div> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/in_footnote.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/in_footnote.text new file mode 100644 index 0000000..e7709cb --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/abbreviations/in_footnote.text @@ -0,0 +1,5 @@ +There is a TXT file here. [^1] + +*[TXT]: Text File + +[^1]: A TXT file. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/autolinks/url_links.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/autolinks/url_links.html new file mode 100644 index 0000000..90eae7d --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/autolinks/url_links.html @@ -0,0 +1,15 @@ +<p>This should be a <a href="http://www.example.com/">http://www.example.com/</a> link. +This should be a <a href="mailto:john.doe@example.com">john.doe@example.com</a> link. +As should <a href="mailto:john.doe@example.com">john.doe@example.com</a> this. +As should <a href="mailto:john_doe@example.com">john_doe@example.com</a> this. +As should <a href="mailto:CSS@example.com"><abbr title="Cascading">CSS</abbr>@example.com</a> this. +Another ampersand <a href="http://www.example.com/?doit&x=y">http://www.example.com/?doit&x=y</a> link. +More entities <a href="http://www.example.com/?doit&x="y&z=y">http://www.example.com/?doit&x="y&z=y</a>.</p> + +<p>Email international <a href="mailto:übung@macht.den.meister.de">übung@macht.den.meister.de</a>, <a href="mailto:ü.äß@hülse.de">ü.äß@hülse.de</a> +Email invalid: <<a href="mailtos:me@example.com">me@example.com</a>></p> + +<p>Autolink with underscore: <a href="http://www.example.com/with_under_score">http://www.example.com/with_under_score</a></p> + +<p><a href="http://www.example.com/">http://www.example.com/</a></p> + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/autolinks/url_links.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/autolinks/url_links.text new file mode 100644 index 0000000..033e8af --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/autolinks/url_links.text @@ -0,0 +1,16 @@ +This should be a <http://www.example.com/> link. +This should be a <mailto:john.doe@example.com> link. +As should <john.doe@example.com> this. +As should <john_doe@example.com> this. +As should <CSS@example.com> this. +Another ampersand <http://www.example.com/?doit&x=y> link. +More entities <http://www.example.com/?doit&x="y&z=y>. + +Email international <übung@macht.den.meister.de>, <ü.äß@hülse.de> +Email invalid: <[me@example.com](mailtos:me@example.com)> + +Autolink with underscore: <http://www.example.com/with_under_score> + +<http://www.example.com/> + +*[CSS]: Cascading diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/escaped_chars/normal.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/escaped_chars/normal.html new file mode 100644 index 0000000..015d594 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/escaped_chars/normal.html @@ -0,0 +1,47 @@ +<p>\</p> + +<p>.</p> + +<p>*</p> + +<p>_</p> + +<p>+</p> + +<p>-</p> + +<p>`</p> + +<p>(</p> + +<p>)</p> + +<p>[</p> + +<p>]</p> + +<p>{</p> + +<p>}</p> + +<p>#</p> + +<p>!</p> + +<p><<</p> + +<p>>></p> + +<p>:</p> + +<p>|</p> + +<p>"</p> + +<p>'</p> + +<p>=</p> + +<p>></p> + +<p><</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/escaped_chars/normal.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/escaped_chars/normal.text new file mode 100644 index 0000000..1c47104 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/escaped_chars/normal.text @@ -0,0 +1,47 @@ +\\ + +\. + +\* + +\_ + +\+ + +\- + +\` + +\( + +\) + +\[ + +\] + +\{ + +\} + +\# + +\! + +\<< + +\>> + +\: + +\| + +\" + +\' + +\= + +\> + +\< diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/comment.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/comment.html new file mode 100644 index 0000000..3544d49 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/comment.html @@ -0,0 +1,6 @@ +<p>This is a <!-- simple --> paragraph. +This is a <!-- simple --> paragraph. +This is a <!-- simple {:/other} paragraph -->. +This is a paragraph. +This is a {:/comment} simple {:/} paragraph. +This is a {::comment} paragraph.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/comment.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/comment.text new file mode 100644 index 0000000..8b9e8d3 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/comment.text @@ -0,0 +1,6 @@ +This is a {::comment}simple{:/} paragraph. +This is a {::comment}simple{:/comment} paragraph. +This is a {::comment}simple {:/other} paragraph{:/comment}. +This is a {::comment/} paragraph. +This is a {:/comment} simple {:/} paragraph. +This is a {::comment} paragraph. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/ignored.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/ignored.html new file mode 100644 index 0000000..63c2c40 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/ignored.html @@ -0,0 +1 @@ +<p>This is {::something}paragraph{:/}</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/ignored.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/ignored.text new file mode 100644 index 0000000..a7e7737 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/ignored.text @@ -0,0 +1 @@ +This is {::something}paragraph{:/} diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/nomarkdown.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/nomarkdown.html new file mode 100644 index 0000000..83de931 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/nomarkdown.html @@ -0,0 +1 @@ +<p>This is *some* text.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/nomarkdown.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/nomarkdown.text new file mode 100644 index 0000000..57c4b38 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/nomarkdown.text @@ -0,0 +1 @@ +This is {::nomarkdown}*some*{:/} text. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/options.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/options.html new file mode 100644 index 0000000..48e3076 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/options.html @@ -0,0 +1 @@ +<p>This is an option <span>*true*</span>!</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/options.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/options.text new file mode 100644 index 0000000..e289491 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/extension/options.text @@ -0,0 +1 @@ +This is an {::options parse_span_html="false" /} option <span>*true*</span>! diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/ial/simple.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/ial/simple.html new file mode 100644 index 0000000..c0f3a47 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/ial/simple.html @@ -0,0 +1,6 @@ +<p>This is a <code class="hund" id="dog">span</code>.</p> + +<p>This is a <code class="hund katz" id="dog" key="val">span</code>.</p> + +<p>This is an{: .ignored} span ial. +This is an{: .escaped} span ial.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/ial/simple.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/ial/simple.text new file mode 100644 index 0000000..8945602 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/ial/simple.text @@ -0,0 +1,6 @@ +This is a `span`{: .hund #dog}. + +This is a `span`{: .hund #dog}{: .katz key='val'}. + +This is an{: .ignored} span ial. +This is an\{: .escaped} span ial. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.html new file mode 100644 index 0000000..11066a5 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.html @@ -0,0 +1,11 @@ +<p>This is a line<br /> +with a line break.</p> + +<p>This is a line +without a line break.</p> + +<p>This is a line <br /> +with a line\ <br /> +break.</p> + +<p>Line break on last line.</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.latex b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.latex new file mode 100644 index 0000000..a62ff56 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.latex @@ -0,0 +1,12 @@ +This is a line\newline +with a line break. + +This is a line +without a line break. + +This is a line \newline +with a line\textbackslash{} \newline +break. + +Line break on last line. + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.text new file mode 100644 index 0000000..92f866f --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/line_breaks/normal.text @@ -0,0 +1,11 @@ +This is a line +with a line break. + +This is a line +without a line break. + +This is a line \\ +with a line\\ +break. + +Line break on last line. diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.html new file mode 100644 index 0000000..3b93c54 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.html @@ -0,0 +1 @@ +<p><span class="kdmath">$5+5$</span> inline math</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.options new file mode 100644 index 0000000..06d559e --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.options @@ -0,0 +1 @@ +:math_engine: ~ diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.text new file mode 100644 index 0000000..a22f9fd --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/no_engine.text @@ -0,0 +1 @@ +$$5+5$$ inline math diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/normal.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/normal.html new file mode 100644 index 0000000..459d03f --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/normal.html @@ -0,0 +1,10 @@ +<p>This is \(\lambda_\alpha > 5\) some math. With \(1 ++ 1\) new line characters in between.</p> + +<p>\(5+5\) inline math, $5.00 $$no math$$</p> + +<p>$$5+5$$ inline math</p> + +<p>\(5+5\)</p> + +<p>$$5+5$$</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/normal.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/normal.text new file mode 100644 index 0000000..e37a007 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/math/normal.text @@ -0,0 +1,10 @@ +This is $$\lambda_\alpha > 5$$ some math. With $$1 ++ 1$$ new line characters in between. + +$$5+5$$ inline math, $5.00 \$$no math$$ + +\$\$5+5$$ inline math + +\$$5+5$$ + +\$\$5+5$$ diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.html new file mode 100644 index 0000000..21a2903 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.html @@ -0,0 +1,6 @@ +<p>This is the A&O. © 2008 by me +As well \& as this. Some ŗ other +values may ¯ may also show but +not st. like &#xYZ;.</p> + +<p>This <span> is BS&T; done!</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.options new file mode 100644 index 0000000..036c561 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.options @@ -0,0 +1 @@ +:entity_output: :as_input diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.text new file mode 100644 index 0000000..7ef42c7 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities.text @@ -0,0 +1,6 @@ +This is the A&O. © 2008 by me +As well \& as this. Some ŗ other +values may ¯ may also show but +not st. like &#xYZ;. + +This <span> is BS&T; done! diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.html new file mode 100644 index 0000000..ed2817b --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.html @@ -0,0 +1 @@ +<p>This "is" 'the' A&O. © 2008 by me ŗ and λ</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.options new file mode 100644 index 0000000..32a751e --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.options @@ -0,0 +1,2 @@ +:entity_output: :as_char +:smart_quotes: apos,apos,quot,quot diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.text new file mode 100644 index 0000000..279b511 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_char.text @@ -0,0 +1 @@ +This "is" 'the' A&O. © 2008 by me ŗ and λ diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.html new file mode 100644 index 0000000..d2eec9d --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.html @@ -0,0 +1 @@ +<p>This is the A&O. © 2008 by me ŗ and λ</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.options new file mode 100644 index 0000000..036c561 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.options @@ -0,0 +1 @@ +:entity_output: :as_input diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.text new file mode 100644 index 0000000..1ddf7cd --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_as_input.text @@ -0,0 +1 @@ +This is the A&O. © 2008 by me ŗ and λ diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.html new file mode 100644 index 0000000..d04613e --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.html @@ -0,0 +1 @@ +<p>This is the A&O. © 2008 by me ŗ and λ</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.options new file mode 100644 index 0000000..2e6e0a1 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.options @@ -0,0 +1 @@ +:entity_output: :numeric diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.text new file mode 100644 index 0000000..1ddf7cd --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_numeric.text @@ -0,0 +1 @@ +This is the A&O. © 2008 by me ŗ and λ diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.html new file mode 100644 index 0000000..258ba14 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.html @@ -0,0 +1 @@ +<p>This is the A&O. © 2008 by me ŗ and λ</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.options new file mode 100644 index 0000000..c195785 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.options @@ -0,0 +1 @@ +:entity_output: :symbolic diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.text new file mode 100644 index 0000000..1ddf7cd --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/entities_symbolic.text @@ -0,0 +1 @@ +This is the A&O. © 2008 by me ŗ and λ diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/greaterthan.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/greaterthan.html new file mode 100644 index 0000000..dcce4cc --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/greaterthan.html @@ -0,0 +1 @@ +<p>2 > 1 > 0</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/greaterthan.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/greaterthan.text new file mode 100644 index 0000000..7dfb7f1 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/greaterthan.text @@ -0,0 +1 @@ +2 > 1 > 0 diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/lowerthan.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/lowerthan.html new file mode 100644 index 0000000..8ebac23 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/lowerthan.html @@ -0,0 +1 @@ +<p>0 < 1 < 2</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/lowerthan.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/lowerthan.text new file mode 100644 index 0000000..038df8b --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/lowerthan.text @@ -0,0 +1 @@ +0 < 1 < 2 diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.html new file mode 100644 index 0000000..02d1dbc --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.html @@ -0,0 +1,40 @@ +<p>This is… something—this too–!</p> + +<p>This «is» some text, « this » too!</p> + +<p>“Fancy quotes” are ‘cool’, even in the ’80s! +Je t’ aime. You’re a funny one! Thomas’ name +Mark’s name. “…you” +“‘Nested’ quotes are ‘possible’”, too! +‘“Otherway” is “round”’!</p> + +<p>‘Opening now!’</p> + +<p>’80s are really cool.</p> + +<p><em>Cluster</em>’s Last Stand.</p> + +<p>Nam liber tempor +“…At vero eos et accusam”</p> + +<p>“<em>Single underscores</em> should work.”</p> + +<p>“<em>Single asterisks</em> should work.”</p> + +<p>‘<strong>Double underscores</strong> should work.’</p> + +<p>‘<strong>Double asterisks</strong> should work.’</p> + +<p>“<em>Hurrah!</em>”</p> + +<p>‘<strong>Absolutely</strong>.’</p> + +<p>“…some Text”</p> + +<p>“… some Text”</p> + +<p>This: “…some Text”</p> + +<p>This: “… some Text”</p> + +<p>”[foo]” “[foo]” d “[foo]”</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.options new file mode 100644 index 0000000..4f1c17c --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.options @@ -0,0 +1 @@ +:entity_output: symbolic diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.text new file mode 100644 index 0000000..27e090e --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography.text @@ -0,0 +1,40 @@ +This is... something---this too--! + +This <<is>> some text, << this >> too! + +"Fancy quotes" are 'cool', even in the '80s! +Je t' aime. You're a funny one! Thomas' name +Mark's name. "...you" +"'Nested' quotes are 'possible'", too! +'"Otherway" is "round"'! + +'Opening now!' + +'80s are really cool. + +<em>Cluster</em>'s Last Stand. + +Nam liber tempor +"...At vero eos et accusam" + +"_Single underscores_ should work." + +"*Single asterisks* should work." + +'__Double underscores__ should work.' + +'**Double asterisks** should work.' + +"_Hurrah!_" + +'__Absolutely__.' + +"...some Text" + +"... some Text" + +This: "...some Text" + +This: "... some Text" + +"\[foo]" "\[foo]" d "\[foo]" diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.html b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.html new file mode 100644 index 0000000..4a6c226 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.html @@ -0,0 +1,3 @@ +<p>This ... something---this too--!</p> + +<p>This <<is>> some text, << this >> too!</p> diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.latex b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.latex new file mode 100644 index 0000000..c7d9ba5 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.latex @@ -0,0 +1,4 @@ +This ... something---this too--! + +This \textless{}\textless{}is\textgreater{}\textgreater{} some text, \textless{}\textless{} this \textgreater{}\textgreater{} too! + diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.options b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.options new file mode 100644 index 0000000..d0a0313 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.options @@ -0,0 +1,8 @@ +typographic_symbols: + hellip: '...' + mdash: '---' + ndash: '--' + laquo: '<<' + raquo: '>>' + laquo_space: '<< ' + raquo_space: ' >>' diff --git a/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.text b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.text new file mode 100644 index 0000000..a3d59b3 --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/kramdown-2.5.1/test/testcases/span/text_substitutions/typography_subst.text @@ -0,0 +1,3 @@ +This ... something---this too--! + +This <<is>> some text, << this >> too! |
