From 544ef3bc588d4180d7ecad15bdacd43813a7c5c5 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 12 Dec 2019 14:51:10 +0000 Subject: update composer libs and minor notifications display fixes --- .../php-markdown.mdtest/Adjacent Lists.text | 10 ++ .../php-markdown.mdtest/Adjacent Lists.xhtml | 19 ++++ .../resources/php-markdown.mdtest/Auto Links.text | 3 + .../resources/php-markdown.mdtest/Auto Links.xhtml | 3 + .../php-markdown.mdtest/Backslash escapes.text | 1 + .../php-markdown.mdtest/Backslash escapes.xhtml | 1 + .../resources/php-markdown.mdtest/Code Spans.text | 6 ++ .../resources/php-markdown.mdtest/Code Spans.xhtml | 6 ++ .../Code block in a list item.text | 15 +++ .../Code block in a list item.xhtml | 18 ++++ .../Code block on second line.text | 2 + .../Code block on second line.xhtml | 2 + .../Code block regressions.text | 15 +++ .../Code block regressions.xhtml | 18 ++++ .../php-markdown.mdtest/Email auto links.text | 24 +++++ .../php-markdown.mdtest/Email auto links.xhtml | 23 +++++ .../resources/php-markdown.mdtest/Emphasis.text | 101 ++++++++++++++++++++ .../resources/php-markdown.mdtest/Emphasis.xhtml | 105 +++++++++++++++++++++ .../php-markdown.mdtest/Empty List Item.text | 35 +++++++ .../php-markdown.mdtest/Empty List Item.xhtml | 47 +++++++++ .../resources/php-markdown.mdtest/Headers.text | 9 ++ .../resources/php-markdown.mdtest/Headers.xhtml | 39 ++++++++ .../php-markdown.mdtest/Horizontal Rules.text | 29 ++++++ .../php-markdown.mdtest/Horizontal Rules.xhtml | 30 ++++++ .../php-markdown.mdtest/Inline HTML (Simple).html | 25 +++++ .../php-markdown.mdtest/Inline HTML (Simple).text | 25 +++++ .../php-markdown.mdtest/Inline HTML (Span).text | 4 + .../php-markdown.mdtest/Inline HTML (Span).xhtml | 4 + .../php-markdown.mdtest/Inline HTML comments.html | 9 ++ .../php-markdown.mdtest/Inline HTML comments.text | 9 ++ .../resources/php-markdown.mdtest/Ins & del.text | 17 ++++ .../resources/php-markdown.mdtest/Ins & del.xhtml | 17 ++++ .../php-markdown.mdtest/Links, inline style.text | 9 ++ .../php-markdown.mdtest/Links, inline style.xhtml | 7 ++ .../resources/php-markdown.mdtest/MD5 Hashes.text | 11 +++ .../resources/php-markdown.mdtest/MD5 Hashes.xhtml | 11 +++ .../php-markdown.mdtest/Mixed OLs and ULs.text | 13 +++ .../php-markdown.mdtest/Mixed OLs and ULs.xhtml | 21 +++++ .../resources/php-markdown.mdtest/Nesting.text | 11 +++ .../resources/php-markdown.mdtest/Nesting.xhtml | 11 +++ .../php-markdown.mdtest/PHP-Specific Bugs.text | 22 +++++ .../php-markdown.mdtest/PHP-Specific Bugs.xhtml | 17 ++++ .../php-markdown.mdtest/Parens in URL.text | 14 +++ .../php-markdown.mdtest/Parens in URL.xhtml | 11 +++ .../php-markdown.mdtest/Quotes in attributes.text | 5 + .../php-markdown.mdtest/Quotes in attributes.xhtml | 5 + .../php-markdown.mdtest/Tight blocks.text | 1 + .../php-markdown.mdtest/Tight blocks.xhtml | 21 +++++ .../php-markdown.mdtest/XML empty tag.text | 2 + .../php-markdown.mdtest/XML empty tag.xhtml | 2 + 50 files changed, 865 insertions(+) create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.xhtml create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text create mode 100644 vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml (limited to 'vendor/michelf/php-markdown/test/resources/php-markdown.mdtest') diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.text new file mode 100644 index 000000000..21876d3a0 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.text @@ -0,0 +1,10 @@ +* one +* two + +1. three +2. four + +* one +* two +1. three +2. four \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.xhtml new file mode 100644 index 000000000..ee7dfd8fd --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.xhtml @@ -0,0 +1,19 @@ + + +
    +
  1. three
  2. +
  3. four
  4. +
+ + + +
    +
  1. three
  2. +
  3. four
  4. +
diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text new file mode 100644 index 000000000..4b10d325a --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml new file mode 100644 index 000000000..259c47f74 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml @@ -0,0 +1,3 @@ +

HTTP://WWW.SOMEURL.COM

+ +

hr@company.com

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.text new file mode 100644 index 000000000..a5e769b7e --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.text @@ -0,0 +1 @@ +Tricky combinaisons: backslash with \\-- two dashes backslash with \\> greater than \\\[test](not a link) \\\*no emphasis* \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.xhtml new file mode 100644 index 000000000..08fb8ef84 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.xhtml @@ -0,0 +1 @@ +

Tricky combinaisons:

backslash with \-- two dashes

backslash with \> greater than

\[test](not a link)

\*no emphasis*

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.text new file mode 100644 index 000000000..43f2bcfd5 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.text @@ -0,0 +1,6 @@ +From `` +on two lines. + +From `` +on three lines. diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml new file mode 100644 index 000000000..9ed0df87e --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml @@ -0,0 +1,6 @@ +

From <!-- to --> +on two lines.

+ +

From <!-- +to --> +on three lines.

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.text new file mode 100644 index 000000000..5093348f3 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.text @@ -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 \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.xhtml new file mode 100644 index 000000000..361c1ae22 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.xhtml @@ -0,0 +1,18 @@ +
    +
  • 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
    +
  • +
\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.text new file mode 100644 index 000000000..b7fcd97c8 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.text @@ -0,0 +1,2 @@ + + Codeblock on second line diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.xhtml new file mode 100644 index 000000000..25abb16ed --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.xhtml @@ -0,0 +1,2 @@ +
Codeblock on second line
+
diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text new file mode 100644 index 000000000..77281429a --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text @@ -0,0 +1,15 @@ + + +foo `bar` + + + +lorem ipsum \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml new file mode 100644 index 000000000..41234decd --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml @@ -0,0 +1,18 @@ +
<?php
+echo "hello!";
+?>
+
+ +

foo bar

+ +
<?php
+echo "hello!";
+
+ +

lorem ipsum

+ +
echo "hello!";
+?>
+
+ +

lorem ipsum

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text new file mode 100644 index 000000000..592e7d50c --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text @@ -0,0 +1,24 @@ + + +International domain names: + + +## Some weird valid email addresses + + + +<1234567890@example.com> + +<_______@example.com> + + + + (all of these characters are allowed) + +<"abc@def"@example.com> (anything goes inside quotation marks) + +<"Fred Bloggs"@example.com> + + + +<"A"@example.com> \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.xhtml new file mode 100644 index 000000000..299482330 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.xhtml @@ -0,0 +1,23 @@ +

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

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.text new file mode 100644 index 000000000..ff144b80b --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.text @@ -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_. diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.xhtml new file mode 100644 index 000000000..8be015f51 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.xhtml @@ -0,0 +1,105 @@ +

Combined emphasis:

+ +
    +
  1. test test
  2. +
  3. test test
  4. +
  5. test test
  6. +
  7. test test
  8. +
  9. test test
  10. +
  11. test test
  12. +
  13. test test
  14. +
  15. test test
  16. +
  17. test test
  18. +
  19. test test
  20. +
  21. test test
  22. +
  23. test test
  24. +
  25. test test
  26. +
  27. test test
  28. +
  29. test test
  30. +
  31. test test
  32. +
  33. test test
  34. +
  35. test test
  36. +
  37. test test
  38. +
  39. test test
  40. +
  41. test test
  42. +
  43. test test
  44. +
  45. test test
  46. +
  47. test test
  48. +
  49. test test
  50. +
  51. test test
  52. +
  53. test test
  54. +
  55. test test
  56. +
  57. test test
  58. +
  59. test test
  60. +
+ +

Incorrect nesting:

+ +
    +
  1. *test test* test
  2. +
  3. _test test_ test
  4. +
  5. test *test test*
  6. +
  7. test _test test_
  8. +
  9. test *test test*
  10. +
  11. test _test test_
  12. +
  13. test **test test**
  14. +
  15. test __test test__
  16. +
  17. _some text_
  18. +
  19. *some text*
  20. +
  21. _some text_
  22. +
  23. *some text*
  24. +
+ +

No emphasis:

+ +
    +
  1. test* test *test
  2. +
  3. test** test **test
  4. +
  5. test_ test _test
  6. +
  7. test__ test __test
  8. +
+ +

Middle-word emphasis (asterisks):

+ +
    +
  1. ab
  2. +
  3. ab
  4. +
  5. abc
  6. +
  7. ab
  8. +
  9. ab
  10. +
  11. abc
  12. +
+ +

Middle-word emphasis (underscore):

+ +
    +
  1. ab
  2. +
  3. ab
  4. +
  5. abc
  6. +
  7. ab
  8. +
  9. ab
  10. +
  11. abc
  12. +
+ +

mypreciousfile.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.

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.text new file mode 100644 index 000000000..3c4edba06 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.text @@ -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 +- diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.xhtml new file mode 100644 index 000000000..02d86edd3 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.xhtml @@ -0,0 +1,47 @@ +

With asterisks

+ +
    +
  • List item
  • +
  • +
  • List item
  • +
+ +

With numbers

+ +
    +
  1. List item
  2. +
  3. +
  4. List item
  5. +
+ +

With hyphens

+ +
    +
  • List item
  • +
  • +
  • List item
  • +
+ +

With asterisks

+ +
    +
  • List item
  • +
  • List item
  • +
  • +
+ +

With numbers

+ +
    +
  1. List item
  2. +
  3. List item
  4. +
  5. +
+ +

With hyphens

+ +
    +
  • List item
  • +
  • List item
  • +
  • +
\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.text new file mode 100644 index 000000000..3a39174a5 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.text @@ -0,0 +1,9 @@ +Header ====== Header ------ ### Header + + - - - + +Header ====== Paragraph Header ------ Paragraph ### Header Paragraph + + - - - + +Paragraph Header ====== Paragraph Paragraph Header ------ Paragraph Paragraph ### Header Paragraph \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.xhtml new file mode 100644 index 000000000..3adb47074 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.xhtml @@ -0,0 +1,39 @@ +

Header

+ +

Header

+ +

Header

+ +
+ +

Header

+ +

Paragraph

+ +

Header

+ +

Paragraph

+ +

Header

+ +

Paragraph

+ +
+ +

Paragraph

+ +

Header

+ +

Paragraph

+ +

Paragraph

+ +

Header

+ +

Paragraph

+ +

Paragraph

+ +

Header

+ +

Paragraph

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.text new file mode 100644 index 000000000..8e2da0b11 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.text @@ -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 diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.xhtml new file mode 100644 index 000000000..b9170b1eb --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.xhtml @@ -0,0 +1,30 @@ +

Horizontal rules:

+ +
+ +
+ +
+ +
+ +
+ +

Not horizontal rules (testing for a bug in 1.0.1j):

+ +

+++

+ +

,,,

+ +

===

+ +

???

+ +

AAA

+ +

jjj

+ +

j j j

+ +

n n n

+ diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html new file mode 100644 index 000000000..1451d625b --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html @@ -0,0 +1,25 @@ +

With some attributes:

+ +
+ foo +
+ +
+ foo +
+ +

Hr's:

+ +
+ +

Regression:

+ +
+#test
+
+ +

Hello

+

Michael

+

E.

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text new file mode 100644 index 000000000..359b622fd --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text @@ -0,0 +1,25 @@ +With some attributes: + +
+ foo +
+ +
+ foo +
+ +Hr's: + +
+ +Regression: + +
+#test
+
+ +

Hello

+

Michael

+

E.

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text new file mode 100644 index 000000000..19028bb3e --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text @@ -0,0 +1,4 @@ +ACINACS + +SB +SB \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml new file mode 100644 index 000000000..4d18affe9 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml @@ -0,0 +1,4 @@ +

ACINACS

+ +

SB +SB

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html new file mode 100644 index 000000000..b45f01481 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html @@ -0,0 +1,9 @@ +

Paragraph one.

+ + + +

Paragraph two.

+ + + +

The end.

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text new file mode 100644 index 000000000..d57d00aa3 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text @@ -0,0 +1,9 @@ +Paragraph one. + + + +Paragraph two. + + + +The end. diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.text new file mode 100644 index 000000000..2d54c660d --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.text @@ -0,0 +1,17 @@ +Here is a block tag ins: + + +

Some text

+
+ +And here it is inside a paragraph. + +And here it is in the middle of a paragraph. + + +

Some text

+
+ +And here is ins as a paragraph. + +And here it is in the middle of a paragraph. diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml new file mode 100644 index 000000000..60e8c5ff0 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml @@ -0,0 +1,17 @@ +

Here is a block tag ins:

+ + +

Some text

+
+ +

And here it is inside a paragraph.

+ +

And here it is in the middle of a paragraph.

+ + +

Some text

+
+ +

And here is ins as a paragraph.

+ +

And here it is in the middle of a paragraph.

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text new file mode 100644 index 000000000..1c9195bd3 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text @@ -0,0 +1,9 @@ +[silly URL w/ angle brackets](). + +[link]( "title"). + +[link][]. + +[link]: "title" + +[link]() \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml new file mode 100644 index 000000000..bbc06fd09 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml @@ -0,0 +1,7 @@ +

silly URL w/ angle brackets.

+ +

link.

+ +

link.

+ +

link

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.text new file mode 100644 index 000000000..7e032218c --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.text @@ -0,0 +1,11 @@ +# Character Escapes + +The MD5 value for `+` is "26b17225b626fb9238849fd60eabdf60". + +# HTML Blocks + +

test

+ +The MD5 value for `

test

` is: + +6205333b793f34273d75379350b36826 \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml new file mode 100644 index 000000000..894e4aa7b --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml @@ -0,0 +1,11 @@ +

Character Escapes

+ +

The MD5 value for + is "26b17225b626fb9238849fd60eabdf60".

+ +

HTML Blocks

+ +

test

+ +

The MD5 value for <p>test</p> is:

+ +

6205333b793f34273d75379350b36826

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.text new file mode 100644 index 000000000..cecde2120 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.text @@ -0,0 +1,13 @@ +* test ++ test +- test + +1. test +2. test + +* test ++ test +- test + +1. test +2. test diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.xhtml new file mode 100644 index 000000000..0872aaaf5 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.xhtml @@ -0,0 +1,21 @@ +
    +
  • test
  • +
  • test
  • +
  • test
  • +
+ +
    +
  1. test
  2. +
  3. test
  4. +
+ +
    +
  • test
  • +
  • test
  • +
  • test
  • +
+ +
    +
  1. test
  2. +
  3. test
  4. +
diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.text new file mode 100644 index 000000000..791538c06 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.text @@ -0,0 +1,11 @@ +Valid nesting: + +**[Link](url)** + +[**Link**](url) + +**[**Link**](url)** + +Invalid nesting: + +[[Link](url)](url) \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.xhtml new file mode 100644 index 000000000..37845d311 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.xhtml @@ -0,0 +1,11 @@ +

Valid nesting:

+ +

Link

+ +

Link

+ +

Link

+ +

Invalid nesting:

+ +

[Link](url)

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.text new file mode 100644 index 000000000..246b60d1c --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.text @@ -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" diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.xhtml new file mode 100644 index 000000000..c982417b6 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.xhtml @@ -0,0 +1,17 @@ +

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"
+
diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.text new file mode 100644 index 000000000..bb7be4fb8 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.text @@ -0,0 +1,14 @@ +[Inline link 1 with parens](/url\(test\) "title"). + +[Inline link 2 with parens]( "title"). + +[Inline link 3 with non-escaped parens](/url(test) "title"). + +[Inline link 4 with non-escaped parens]( "title"). + +[Reference link 1 with parens][1]. + +[Reference link 2 with parens][2]. + + [1]: /url(test) "title" + [2]: "title" diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml new file mode 100644 index 000000000..a81aa029b --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml @@ -0,0 +1,11 @@ +

Inline link 1 with parens.

+ +

Inline link 2 with parens.

+ +

Inline link 3 with non-escaped parens.

+ +

Inline link 4 with non-escaped parens.

+ +

Reference link 1 with parens.

+ +

Reference link 2 with parens.

\ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.text new file mode 100644 index 000000000..97922860c --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.text @@ -0,0 +1,5 @@ +[Test](/"style="color:red) +[Test](/'style='color:red) + +![](/"style="border-color:red;border-size:1px;border-style:solid) +![](/'style='border-color:red;border-size:1px;border-style:solid) diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml new file mode 100644 index 000000000..e3fcfd205 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml @@ -0,0 +1,5 @@ +

Test +Test

+ +

+

diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.text new file mode 100644 index 000000000..ae4cdcb46 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.text @@ -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. \ No newline at end of file diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.xhtml new file mode 100644 index 000000000..86554308b --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.xhtml @@ -0,0 +1,21 @@ +

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.

+
diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text new file mode 100644 index 000000000..97714ab97 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text @@ -0,0 +1,2 @@ +First line.
+Second line. diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml new file mode 100644 index 000000000..f5d472be2 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml @@ -0,0 +1,2 @@ +

First line.
+Second line.

\ No newline at end of file -- cgit v1.2.3