mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 07:09:56 +09:00
Update composer dependencies
This commit is contained in:
parent
255352df62
commit
61d2e8c141
419 changed files with 37794 additions and 5489 deletions
10
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.text
vendored
Normal file
10
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.text
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
* one
|
||||
* two
|
||||
|
||||
1. three
|
||||
2. four
|
||||
|
||||
* one
|
||||
* two
|
||||
1. three
|
||||
2. four
|
||||
19
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.xhtml
vendored
Normal file
19
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.xhtml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<ul>
|
||||
<li>one</li>
|
||||
<li>two</li>
|
||||
</ul>
|
||||
|
||||
<ol>
|
||||
<li>three</li>
|
||||
<li>four</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>one</li>
|
||||
<li>two</li>
|
||||
</ul>
|
||||
|
||||
<ol>
|
||||
<li>three</li>
|
||||
<li>four</li>
|
||||
</ol>
|
||||
3
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text
vendored
Normal file
3
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<HTTP://WWW.SOMEURL.COM>
|
||||
|
||||
<hr@company.com>
|
||||
3
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml
vendored
Normal file
3
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<p><a href="HTTP://WWW.SOMEURL.COM">HTTP://WWW.SOMEURL.COM</a></p>
|
||||
|
||||
<p><a href="mailto:hr@company.com">hr@company.com</a></p>
|
||||
1
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.text
vendored
Normal file
1
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.text
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Tricky combinaisons:
backslash with \\-- two dashes
backslash with \\> greater than
\\\[test](not a link)
\\\*no emphasis*
|
||||
1
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.xhtml
vendored
Normal file
1
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.xhtml
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>Tricky combinaisons:</p>
<p>backslash with \-- two dashes</p>
<p>backslash with \> greater than</p>
<p>\[test](not a link)</p>
<p>\*no emphasis*</p>
|
||||
6
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.text
vendored
Normal file
6
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.text
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
From `<!--` to `-->`
|
||||
on two lines.
|
||||
|
||||
From `<!--`
|
||||
to `-->`
|
||||
on three lines.
|
||||
6
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml
vendored
Normal file
6
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<p>From <code><!--</code> to <code>--></code>
|
||||
on two lines.</p>
|
||||
|
||||
<p>From <code><!--</code>
|
||||
to <code>--></code>
|
||||
on three lines.</p>
|
||||
15
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.text
vendored
Normal file
15
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.text
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
* List Item:
|
||||
|
||||
code block
|
||||
|
||||
with a blank line
|
||||
|
||||
within a list item.
|
||||
|
||||
* code block
|
||||
as first element of a list item
|
||||
|
||||
* List Item:
|
||||
|
||||
code block with whitespace on preceding line
|
||||
18
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.xhtml
vendored
Normal file
18
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.xhtml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<ul>
|
||||
<li><p>List Item:</p>
|
||||
|
||||
<pre><code>code block
|
||||
|
||||
with a blank line
|
||||
</code></pre>
|
||||
|
||||
<p>within a list item.</p></li>
|
||||
<li><pre><code>code block
|
||||
as first element of a list item
|
||||
</code></pre></li>
|
||||
|
||||
<li><p>List Item:</p>
|
||||
|
||||
<pre><code>code block with whitespace on preceding line
|
||||
</code></pre></li>
|
||||
</ul>
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
|
||||
Codeblock on second line
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
<pre><code>Codeblock on second line
|
||||
</code></pre>
|
||||
15
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text
vendored
Normal file
15
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
echo "hello!";
|
||||
?>
|
||||
|
||||
foo `bar`
|
||||
|
||||
<?php
|
||||
echo "hello!";
|
||||
|
||||
lorem ipsum
|
||||
|
||||
echo "hello!";
|
||||
?>
|
||||
|
||||
lorem ipsum
|
||||
18
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml
vendored
Normal file
18
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<pre><code><?php
|
||||
echo "hello!";
|
||||
?>
|
||||
</code></pre>
|
||||
|
||||
<p>foo <code>bar</code></p>
|
||||
|
||||
<pre><code><?php
|
||||
echo "hello!";
|
||||
</code></pre>
|
||||
|
||||
<p>lorem ipsum</p>
|
||||
|
||||
<pre><code>echo "hello!";
|
||||
?>
|
||||
</code></pre>
|
||||
|
||||
<p>lorem ipsum</p>
|
||||
24
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text
vendored
Normal file
24
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<michel.fortin@michelf.ca>
|
||||
|
||||
International domain names: <help@tūdaliņ.lv>
|
||||
|
||||
|
||||
## Some weird valid email addresses
|
||||
|
||||
<abc.123@example.com>
|
||||
|
||||
<1234567890@example.com>
|
||||
|
||||
<_______@example.com>
|
||||
|
||||
<abc+mailbox/department=shipping@example.com>
|
||||
|
||||
<!#$%&'*+-/=?^_`.{|}~@example.com> (all of these characters are allowed)
|
||||
|
||||
<"abc@def"@example.com> (anything goes inside quotation marks)
|
||||
|
||||
<"Fred Bloggs"@example.com>
|
||||
|
||||
<jsmith@[192.0.2.1]>
|
||||
|
||||
<"A"@example.com>
|
||||
23
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.xhtml
vendored
Normal file
23
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.xhtml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<p><a href="mailto:michel.fortin@michelf.ca">michel.fortin@michelf.ca</a></p>
|
||||
|
||||
<p>International domain names: <a href="mailto:help@tūdaliņ.lv">help@tūdaliņ.lv</a></p>
|
||||
|
||||
<h2>Some weird valid email addresses</h2>
|
||||
|
||||
<p><a href="mailto:abc.123@example.com">abc.123@example.com</a></p>
|
||||
|
||||
<p><a href="mailto:1234567890@example.com">1234567890@example.com</a></p>
|
||||
|
||||
<p><a href="mailto:_______@example.com">_______@example.com</a></p>
|
||||
|
||||
<p><a href="mailto:abc+mailbox/department=shipping@example.com">abc+mailbox/department=shipping@example.com</a></p>
|
||||
|
||||
<p><a href="mailto:!#$%&'*+-/=?^_`.{|}~@example.com">!#$%&'*+-/=?^_`.{|}~@example.com</a> (all of these characters are allowed)</p>
|
||||
|
||||
<p><a href="mailto:"abc@def"@example.com">"abc@def"@example.com</a> (anything goes inside quotation marks)</p>
|
||||
|
||||
<p><a href="mailto:"Fred Bloggs"@example.com">"Fred Bloggs"@example.com</a></p>
|
||||
|
||||
<p><a href="mailto:jsmith@[192.0.2.1]">jsmith@[192.0.2.1]</a></p>
|
||||
|
||||
<p><a href="mailto:"A"@example.com">"A"@example.com</a></p>
|
||||
101
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.text
vendored
Normal file
101
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.text
vendored
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
Combined emphasis:
|
||||
|
||||
1. ***test test***
|
||||
2. ___test test___
|
||||
3. *test **test***
|
||||
4. **test *test***
|
||||
5. ***test* test**
|
||||
6. ***test** test*
|
||||
7. ***test* test**
|
||||
8. **test *test***
|
||||
9. *test **test***
|
||||
10. _test __test___
|
||||
11. __test _test___
|
||||
12. ___test_ test__
|
||||
13. ___test__ test_
|
||||
14. ___test_ test__
|
||||
15. __test _test___
|
||||
16. _test __test___
|
||||
17. *test __test__*
|
||||
18. **test _test_**
|
||||
19. **_test_ test**
|
||||
20. *__test__ test*
|
||||
21. **_test_ test**
|
||||
22. **test _test_**
|
||||
23. *test __test__*
|
||||
24. _test **test**_
|
||||
25. __test *test*__
|
||||
26. __*test* test__
|
||||
27. _**test** test_
|
||||
28. __*test* test__
|
||||
29. __test *test*__
|
||||
30. _test **test**_
|
||||
|
||||
|
||||
Incorrect nesting:
|
||||
|
||||
1. *test **test* test**
|
||||
2. _test __test_ test__
|
||||
3. **test *test** test*
|
||||
4. __test _test__ test_
|
||||
5. *test *test* test*
|
||||
6. _test _test_ test_
|
||||
7. **test **test** test**
|
||||
8. __test __test__ test__
|
||||
9. _**some text_**
|
||||
10. *__some text*__
|
||||
11. **_some text**_
|
||||
12. *__some text*__
|
||||
|
||||
|
||||
No emphasis:
|
||||
|
||||
1. test* test *test
|
||||
2. test** test **test
|
||||
3. test_ test _test
|
||||
4. test__ test __test
|
||||
|
||||
|
||||
|
||||
Middle-word emphasis (asterisks):
|
||||
|
||||
1. *a*b
|
||||
2. a*b*
|
||||
3. a*b*c
|
||||
4. **a**b
|
||||
5. a**b**
|
||||
6. a**b**c
|
||||
|
||||
|
||||
Middle-word emphasis (underscore):
|
||||
|
||||
1. _a_b
|
||||
2. a_b_
|
||||
3. a_b_c
|
||||
4. __a__b
|
||||
5. a__b__
|
||||
6. a__b__c
|
||||
|
||||
my_precious_file.txt
|
||||
|
||||
|
||||
## Tricky Cases
|
||||
|
||||
E**. **Test** TestTestTest
|
||||
|
||||
E**. **Test** Test Test Test
|
||||
|
||||
|
||||
## Overlong emphasis
|
||||
|
||||
Name: ____________
|
||||
Organization: ____
|
||||
Region/Country: __
|
||||
|
||||
_____Cut here_____
|
||||
|
||||
____Cut here____
|
||||
|
||||
# Regression
|
||||
|
||||
_**Note**_: This _is emphasis_.
|
||||
105
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.xhtml
vendored
Normal file
105
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.xhtml
vendored
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
<p>Combined emphasis:</p>
|
||||
|
||||
<ol>
|
||||
<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>
|
||||
<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>
|
||||
</ol>
|
||||
|
||||
<p>Incorrect nesting:</p>
|
||||
|
||||
<ol>
|
||||
<li>*test <strong>test* test</strong></li>
|
||||
<li>_test <strong>test_ test</strong></li>
|
||||
<li><strong>test *test</strong> test*</li>
|
||||
<li><strong>test _test</strong> test_</li>
|
||||
<li><em>test *test</em> test*</li>
|
||||
<li><em>test _test</em> test_</li>
|
||||
<li><strong>test **test</strong> test**</li>
|
||||
<li><strong>test __test</strong> test__</li>
|
||||
<li>_<strong>some text_</strong></li>
|
||||
<li>*<strong>some text*</strong></li>
|
||||
<li><strong>_some text</strong>_</li>
|
||||
<li>*<strong>some text*</strong></li>
|
||||
</ol>
|
||||
|
||||
<p>No emphasis:</p>
|
||||
|
||||
<ol>
|
||||
<li>test* test *test</li>
|
||||
<li>test** test **test</li>
|
||||
<li>test_ test _test</li>
|
||||
<li>test__ test __test</li>
|
||||
</ol>
|
||||
|
||||
<p>Middle-word emphasis (asterisks):</p>
|
||||
|
||||
<ol>
|
||||
<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>
|
||||
</ol>
|
||||
|
||||
<p>Middle-word emphasis (underscore):</p>
|
||||
|
||||
<ol>
|
||||
<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>
|
||||
</ol>
|
||||
|
||||
<p>my<em>precious</em>file.txt</p>
|
||||
|
||||
<h2>Tricky Cases</h2>
|
||||
|
||||
<p>E**. <strong>Test</strong> TestTestTest</p>
|
||||
|
||||
<p>E**. <strong>Test</strong> Test Test Test</p>
|
||||
|
||||
|
||||
<h2>Overlong emphasis</h2>
|
||||
|
||||
<p>Name: ____________<br />
|
||||
Organization: ____<br />
|
||||
Region/Country: __</p>
|
||||
|
||||
<p>_____Cut here_____</p>
|
||||
|
||||
<p>____Cut here____</p>
|
||||
|
||||
<h1>Regression</h1>
|
||||
|
||||
<p><em><strong>Note</strong></em>: This <em>is emphasis</em>.</p>
|
||||
35
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.text
vendored
Normal file
35
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.text
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
With asterisks
|
||||
|
||||
* List item
|
||||
*
|
||||
* List item
|
||||
|
||||
With numbers
|
||||
|
||||
1. List item
|
||||
2.
|
||||
3. List item
|
||||
|
||||
With hyphens
|
||||
|
||||
- List item
|
||||
-
|
||||
- List item
|
||||
|
||||
With asterisks
|
||||
|
||||
* List item
|
||||
* List item
|
||||
*
|
||||
|
||||
With numbers
|
||||
|
||||
1. List item
|
||||
2. List item
|
||||
3.
|
||||
|
||||
With hyphens
|
||||
|
||||
- List item
|
||||
- List item
|
||||
-
|
||||
47
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.xhtml
vendored
Normal file
47
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.xhtml
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<p>With asterisks</p>
|
||||
|
||||
<ul>
|
||||
<li>List item</li>
|
||||
<li></li>
|
||||
<li>List item</li>
|
||||
</ul>
|
||||
|
||||
<p>With numbers</p>
|
||||
|
||||
<ol>
|
||||
<li>List item</li>
|
||||
<li></li>
|
||||
<li>List item</li>
|
||||
</ol>
|
||||
|
||||
<p>With hyphens</p>
|
||||
|
||||
<ul>
|
||||
<li>List item</li>
|
||||
<li></li>
|
||||
<li>List item</li>
|
||||
</ul>
|
||||
|
||||
<p>With asterisks</p>
|
||||
|
||||
<ul>
|
||||
<li>List item</li>
|
||||
<li>List item</li>
|
||||
<li></li>
|
||||
</ul>
|
||||
|
||||
<p>With numbers</p>
|
||||
|
||||
<ol>
|
||||
<li>List item</li>
|
||||
<li>List item</li>
|
||||
<li></li>
|
||||
</ol>
|
||||
|
||||
<p>With hyphens</p>
|
||||
|
||||
<ul>
|
||||
<li>List item</li>
|
||||
<li>List item</li>
|
||||
<li></li>
|
||||
</ul>
|
||||
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.text
vendored
Normal file
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.text
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Header
======
Header
------
### Header
|
||||
|
||||
- - -
|
||||
|
||||
Header
======
Paragraph
Header
------
Paragraph
### Header
Paragraph
|
||||
|
||||
- - -
|
||||
|
||||
Paragraph
Header
======
Paragraph
Paragraph
Header
------
Paragraph
Paragraph
### Header
Paragraph
|
||||
39
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.xhtml
vendored
Normal file
39
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.xhtml
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<h1>Header</h1>
|
||||
|
||||
<h2>Header</h2>
|
||||
|
||||
<h3>Header</h3>
|
||||
|
||||
<hr />
|
||||
|
||||
<h1>Header</h1>
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<h2>Header</h2>
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<h3>Header</h3>
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<h1>Header</h1>
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<h2>Header</h2>
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<p>Paragraph</p>
|
||||
|
||||
<h3>Header</h3>
|
||||
|
||||
<p>Paragraph</p>
|
||||
29
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.text
vendored
Normal file
29
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.text
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
Horizontal rules:
|
||||
|
||||
- - -
|
||||
|
||||
* * *
|
||||
|
||||
***
|
||||
|
||||
---
|
||||
|
||||
___
|
||||
|
||||
Not horizontal rules (testing for a bug in 1.0.1j):
|
||||
|
||||
+++
|
||||
|
||||
,,,
|
||||
|
||||
===
|
||||
|
||||
???
|
||||
|
||||
AAA
|
||||
|
||||
jjj
|
||||
|
||||
j j j
|
||||
|
||||
n n n
|
||||
30
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.xhtml
vendored
Normal file
30
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.xhtml
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<p>Horizontal rules:</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<hr />
|
||||
|
||||
<hr />
|
||||
|
||||
<hr />
|
||||
|
||||
<hr />
|
||||
|
||||
<p>Not horizontal rules (testing for a bug in 1.0.1j):</p>
|
||||
|
||||
<p>+++</p>
|
||||
|
||||
<p>,,,</p>
|
||||
|
||||
<p>===</p>
|
||||
|
||||
<p>???</p>
|
||||
|
||||
<p>AAA</p>
|
||||
|
||||
<p>jjj</p>
|
||||
|
||||
<p>j j j</p>
|
||||
|
||||
<p>n n n</p>
|
||||
|
||||
25
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html
vendored
Normal file
25
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<p>With some attributes:</p>
|
||||
|
||||
<div id="test">
|
||||
foo
|
||||
</div>
|
||||
|
||||
<div id="test"
|
||||
class="nono">
|
||||
foo
|
||||
</div>
|
||||
|
||||
<p>Hr's:</p>
|
||||
|
||||
<hr class="foo"
|
||||
id="bar" >
|
||||
|
||||
<p>Regression:</p>
|
||||
|
||||
<pre>
|
||||
#test
|
||||
</pre>
|
||||
|
||||
<p>Hello</p>
|
||||
<p>Michael</p>
|
||||
<p>E.</p>
|
||||
25
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text
vendored
Normal file
25
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
With some attributes:
|
||||
|
||||
<div id="test">
|
||||
foo
|
||||
</div>
|
||||
|
||||
<div id="test"
|
||||
class="nono">
|
||||
foo
|
||||
</div>
|
||||
|
||||
Hr's:
|
||||
|
||||
<hr class="foo"
|
||||
id="bar" >
|
||||
|
||||
Regression:
|
||||
|
||||
<pre>
|
||||
#test
|
||||
</pre>
|
||||
|
||||
<p>Hello</p>
|
||||
<p>Michael</p>
|
||||
<p>E.</p>
|
||||
4
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text
vendored
Normal file
4
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<abbr title="` **Attribute Content Is Not A Code Span** `">ACINACS</abbr>
|
||||
|
||||
<abbr title="`first backtick!">SB</abbr>
|
||||
<abbr title="`second backtick!">SB</abbr>
|
||||
4
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml
vendored
Normal file
4
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<p><abbr title="` **Attribute Content Is Not A Code Span** `">ACINACS</abbr></p>
|
||||
|
||||
<p><abbr title="`first backtick!">SB</abbr>
|
||||
<abbr title="`second backtick!">SB</abbr></p>
|
||||
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html
vendored
Normal file
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<p>Paragraph one.</p>
|
||||
|
||||
<!-- double--dash (invalid SGML comment) -->
|
||||
|
||||
<p>Paragraph two.</p>
|
||||
|
||||
<!-- enclosed tag </div> -->
|
||||
|
||||
<p>The end.</p>
|
||||
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text
vendored
Normal file
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Paragraph one.
|
||||
|
||||
<!-- double--dash (invalid SGML comment) -->
|
||||
|
||||
Paragraph two.
|
||||
|
||||
<!-- enclosed tag </div> -->
|
||||
|
||||
The end.
|
||||
17
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.text
vendored
Normal file
17
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.text
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
Here is a block tag ins:
|
||||
|
||||
<ins>
|
||||
<p>Some text</p>
|
||||
</ins>
|
||||
|
||||
<ins>And here it is inside a paragraph.</ins>
|
||||
|
||||
And here it is <ins>in the middle of</ins> a paragraph.
|
||||
|
||||
<del>
|
||||
<p>Some text</p>
|
||||
</del>
|
||||
|
||||
<del>And here is ins as a paragraph.</del>
|
||||
|
||||
And here it is <del>in the middle of</del> a paragraph.
|
||||
17
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml
vendored
Normal file
17
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<p>Here is a block tag ins:</p>
|
||||
|
||||
<ins>
|
||||
<p>Some text</p>
|
||||
</ins>
|
||||
|
||||
<p><ins>And here it is inside a paragraph.</ins></p>
|
||||
|
||||
<p>And here it is <ins>in the middle of</ins> a paragraph.</p>
|
||||
|
||||
<del>
|
||||
<p>Some text</p>
|
||||
</del>
|
||||
|
||||
<p><del>And here is ins as a paragraph.</del></p>
|
||||
|
||||
<p>And here it is <del>in the middle of</del> a paragraph.</p>
|
||||
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text
vendored
Normal file
9
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
[silly URL w/ angle brackets](<?}]*+|&)>).
|
||||
|
||||
[link](<url://with spaces> "title").
|
||||
|
||||
[link][].
|
||||
|
||||
[link]: <url with spaces> "title"
|
||||
|
||||
[link](<s p a c e s>)
|
||||
7
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml
vendored
Normal file
7
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<p><a href="?}]*+|&)">silly URL w/ angle brackets</a>.</p>
|
||||
|
||||
<p><a href="url://with spaces" title="title">link</a>.</p>
|
||||
|
||||
<p><a href="url with spaces" title="title">link</a>.</p>
|
||||
|
||||
<p><a href="s p a c e s">link</a></p>
|
||||
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.text
vendored
Normal file
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.text
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Character Escapes
|
||||
|
||||
The MD5 value for `+` is "26b17225b626fb9238849fd60eabdf60".
|
||||
|
||||
# HTML Blocks
|
||||
|
||||
<p>test</p>
|
||||
|
||||
The MD5 value for `<p>test</p>` is:
|
||||
|
||||
6205333b793f34273d75379350b36826
|
||||
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml
vendored
Normal file
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<h1>Character Escapes</h1>
|
||||
|
||||
<p>The MD5 value for <code>+</code> is "26b17225b626fb9238849fd60eabdf60".</p>
|
||||
|
||||
<h1>HTML Blocks</h1>
|
||||
|
||||
<p>test</p>
|
||||
|
||||
<p>The MD5 value for <code><p>test</p></code> is:</p>
|
||||
|
||||
<p>6205333b793f34273d75379350b36826</p>
|
||||
13
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.text
vendored
Normal file
13
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.text
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
* test
|
||||
+ test
|
||||
- test
|
||||
|
||||
1. test
|
||||
2. test
|
||||
|
||||
* test
|
||||
+ test
|
||||
- test
|
||||
|
||||
1. test
|
||||
2. test
|
||||
21
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.xhtml
vendored
Normal file
21
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.xhtml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<ul>
|
||||
<li>test</li>
|
||||
<li>test</li>
|
||||
<li>test</li>
|
||||
</ul>
|
||||
|
||||
<ol>
|
||||
<li>test</li>
|
||||
<li>test</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>test</li>
|
||||
<li>test</li>
|
||||
<li>test</li>
|
||||
</ul>
|
||||
|
||||
<ol>
|
||||
<li>test</li>
|
||||
<li>test</li>
|
||||
</ol>
|
||||
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.text
vendored
Normal file
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.text
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Valid nesting:
|
||||
|
||||
**[Link](url)**
|
||||
|
||||
[**Link**](url)
|
||||
|
||||
**[**Link**](url)**
|
||||
|
||||
Invalid nesting:
|
||||
|
||||
[[Link](url)](url)
|
||||
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.xhtml
vendored
Normal file
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.xhtml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<p>Valid nesting:</p>
|
||||
|
||||
<p><strong><a href="url">Link</a></strong></p>
|
||||
|
||||
<p><a href="url"><strong>Link</strong></a></p>
|
||||
|
||||
<p><strong><a href="url"><strong>Link</strong></a></strong></p>
|
||||
|
||||
<p>Invalid nesting:</p>
|
||||
|
||||
<p><a href="url">[Link](url)</a></p>
|
||||
22
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.text
vendored
Normal file
22
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.text
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
This tests for a bug where quotes escaped by PHP when using
|
||||
`preg_replace` with the `/e` modifier must be correctly unescaped
|
||||
(hence the `_UnslashQuotes` function found only in PHP Markdown).
|
||||
|
||||
|
||||
|
||||
Headers below should appear exactly as they are typed (no backslash
|
||||
added or removed).
|
||||
|
||||
Header "quoted\" again \\""
|
||||
===========================
|
||||
|
||||
Header "quoted\" again \\""
|
||||
---------------------------
|
||||
|
||||
### Header "quoted\" again \\"" ###
|
||||
|
||||
|
||||
|
||||
Test with tabs for `_Detab`:
|
||||
|
||||
Code 'block' with some "tabs" and "quotes"
|
||||
17
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.xhtml
vendored
Normal file
17
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.xhtml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<p>This tests for a bug where quotes escaped by PHP when using
|
||||
<code>preg_replace</code> with the <code>/e</code> modifier must be correctly unescaped
|
||||
(hence the <code>_UnslashQuotes</code> function found only in PHP Markdown).</p>
|
||||
|
||||
<p>Headers below should appear exactly as they are typed (no backslash
|
||||
added or removed).</p>
|
||||
|
||||
<h1>Header "quoted\" again \""</h1>
|
||||
|
||||
<h2>Header "quoted\" again \""</h2>
|
||||
|
||||
<h3>Header "quoted\" again \""</h3>
|
||||
|
||||
<p>Test with tabs for <code>_Detab</code>:</p>
|
||||
|
||||
<pre><code>Code 'block' with some "tabs" and "quotes"
|
||||
</code></pre>
|
||||
14
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.text
vendored
Normal file
14
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.text
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
[Inline link 1 with parens](/url\(test\) "title").
|
||||
|
||||
[Inline link 2 with parens](</url\(test\)> "title").
|
||||
|
||||
[Inline link 3 with non-escaped parens](/url(test) "title").
|
||||
|
||||
[Inline link 4 with non-escaped parens](</url(test)> "title").
|
||||
|
||||
[Reference link 1 with parens][1].
|
||||
|
||||
[Reference link 2 with parens][2].
|
||||
|
||||
[1]: /url(test) "title"
|
||||
[2]: </url(test)> "title"
|
||||
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml
vendored
Normal file
11
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<p><a href="/url(test)" title="title">Inline link 1 with parens</a>.</p>
|
||||
|
||||
<p><a href="/url(test)" title="title">Inline link 2 with parens</a>.</p>
|
||||
|
||||
<p><a href="/url(test)" title="title">Inline link 3 with non-escaped parens</a>.</p>
|
||||
|
||||
<p><a href="/url(test)" title="title">Inline link 4 with non-escaped parens</a>.</p>
|
||||
|
||||
<p><a href="/url(test)" title="title">Reference link 1 with parens</a>.</p>
|
||||
|
||||
<p><a href="/url(test)" title="title">Reference link 2 with parens</a>.</p>
|
||||
5
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.text
vendored
Normal file
5
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.text
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
[Test](/"style="color:red)
|
||||
[Test](/'style='color:red)
|
||||
|
||||

|
||||

|
||||
5
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml
vendored
Normal file
5
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<p><a href="/"style="color:red">Test</a>
|
||||
<a href="/'style='color:red">Test</a></p>
|
||||
|
||||
<p><img src="/"style="border-color:red;border-size:1px;border-style:solid" alt="" />
|
||||
<img src="/'style='border-color:red;border-size:1px;border-style:solid" alt="" /></p>
|
||||
1
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.text
vendored
Normal file
1
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.text
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Paragraph and no space:
* ciao
Paragraph and 1 space:
* ciao
Paragraph and 3 spaces:
* ciao
Paragraph and 4 spaces:
* ciao
Paragraph before header:
#Header
Paragraph before blockquote:
>Some quote.
|
||||
21
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.xhtml
vendored
Normal file
21
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.xhtml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<p>Paragraph and no space:
|
||||
* ciao</p>
|
||||
|
||||
<p>Paragraph and 1 space:
|
||||
* ciao</p>
|
||||
|
||||
<p>Paragraph and 3 spaces:
|
||||
* ciao</p>
|
||||
|
||||
<p>Paragraph and 4 spaces:
|
||||
* ciao</p>
|
||||
|
||||
<p>Paragraph before header:</p>
|
||||
|
||||
<h1>Header</h1>
|
||||
|
||||
<p>Paragraph before blockquote:</p>
|
||||
|
||||
<blockquote>
|
||||
<p>Some quote.</p>
|
||||
</blockquote>
|
||||
2
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text
vendored
Normal file
2
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
First line. <br/>
|
||||
Second line.
|
||||
2
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml
vendored
Normal file
2
vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
<p>First line. <br/>
|
||||
Second line.</p>
|
||||
Loading…
Add table
Add a link
Reference in a new issue