diff --git a/tests/commonmark/10-Tabs.html b/tests/commonmark/10-Tabs.html new file mode 100644 index 0000000..b26a616 --- /dev/null +++ b/tests/commonmark/10-Tabs.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/10-Tabs.md b/tests/commonmark/10-Tabs.md new file mode 100644 index 0000000..85d64f8 --- /dev/null +++ b/tests/commonmark/10-Tabs.md @@ -0,0 +1 @@ +# Foo \ No newline at end of file diff --git a/tests/commonmark/102-Fenced_code_blocks.html b/tests/commonmark/102-Fenced_code_blocks.html new file mode 100644 index 0000000..f90b1f3 --- /dev/null +++ b/tests/commonmark/102-Fenced_code_blocks.html @@ -0,0 +1,4 @@ +
```
+aaa
+```
+
\ No newline at end of file diff --git a/tests/commonmark/102-Fenced_code_blocks.md b/tests/commonmark/102-Fenced_code_blocks.md new file mode 100644 index 0000000..b250828 --- /dev/null +++ b/tests/commonmark/102-Fenced_code_blocks.md @@ -0,0 +1,3 @@ + ``` + aaa + ``` \ No newline at end of file diff --git a/tests/commonmark/103-Fenced_code_blocks.html b/tests/commonmark/103-Fenced_code_blocks.html new file mode 100644 index 0000000..690d624 --- /dev/null +++ b/tests/commonmark/103-Fenced_code_blocks.html @@ -0,0 +1,2 @@ +
aaa
+
\ No newline at end of file diff --git a/tests/commonmark/103-Fenced_code_blocks.md b/tests/commonmark/103-Fenced_code_blocks.md new file mode 100644 index 0000000..60bf1e5 --- /dev/null +++ b/tests/commonmark/103-Fenced_code_blocks.md @@ -0,0 +1,3 @@ +``` +aaa + ``` \ No newline at end of file diff --git a/tests/commonmark/104-Fenced_code_blocks.html b/tests/commonmark/104-Fenced_code_blocks.html new file mode 100644 index 0000000..690d624 --- /dev/null +++ b/tests/commonmark/104-Fenced_code_blocks.html @@ -0,0 +1,2 @@ +
aaa
+
\ No newline at end of file diff --git a/tests/commonmark/104-Fenced_code_blocks.md b/tests/commonmark/104-Fenced_code_blocks.md new file mode 100644 index 0000000..ae6f0e8 --- /dev/null +++ b/tests/commonmark/104-Fenced_code_blocks.md @@ -0,0 +1,3 @@ + ``` +aaa + ``` \ No newline at end of file diff --git a/tests/commonmark/106-Fenced_code_blocks.html b/tests/commonmark/106-Fenced_code_blocks.html new file mode 100644 index 0000000..2ee2c61 --- /dev/null +++ b/tests/commonmark/106-Fenced_code_blocks.html @@ -0,0 +1,2 @@ +

+aaa

\ No newline at end of file diff --git a/tests/commonmark/106-Fenced_code_blocks.md b/tests/commonmark/106-Fenced_code_blocks.md new file mode 100644 index 0000000..ace01f1 --- /dev/null +++ b/tests/commonmark/106-Fenced_code_blocks.md @@ -0,0 +1,2 @@ +``` ``` +aaa \ No newline at end of file diff --git a/tests/commonmark/108-Fenced_code_blocks.html b/tests/commonmark/108-Fenced_code_blocks.html new file mode 100644 index 0000000..f6c67db --- /dev/null +++ b/tests/commonmark/108-Fenced_code_blocks.html @@ -0,0 +1,4 @@ +

foo

+
bar
+
+

baz

\ No newline at end of file diff --git a/tests/commonmark/108-Fenced_code_blocks.md b/tests/commonmark/108-Fenced_code_blocks.md new file mode 100644 index 0000000..0540b9d --- /dev/null +++ b/tests/commonmark/108-Fenced_code_blocks.md @@ -0,0 +1,5 @@ +foo +``` +bar +``` +baz \ No newline at end of file diff --git a/tests/commonmark/109-Fenced_code_blocks.html b/tests/commonmark/109-Fenced_code_blocks.html new file mode 100644 index 0000000..f8b2659 --- /dev/null +++ b/tests/commonmark/109-Fenced_code_blocks.html @@ -0,0 +1,4 @@ +

foo

+
bar
+
+

baz

\ No newline at end of file diff --git a/tests/commonmark/109-Fenced_code_blocks.md b/tests/commonmark/109-Fenced_code_blocks.md new file mode 100644 index 0000000..b28bff8 --- /dev/null +++ b/tests/commonmark/109-Fenced_code_blocks.md @@ -0,0 +1,6 @@ +foo +--- +~~~ +bar +~~~ +# baz \ No newline at end of file diff --git a/tests/commonmark/11-Tabs.html b/tests/commonmark/11-Tabs.html new file mode 100644 index 0000000..1d6667d --- /dev/null +++ b/tests/commonmark/11-Tabs.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/11-Tabs.md b/tests/commonmark/11-Tabs.md new file mode 100644 index 0000000..c975fa0 --- /dev/null +++ b/tests/commonmark/11-Tabs.md @@ -0,0 +1 @@ +* * * \ No newline at end of file diff --git a/tests/commonmark/110-Fenced_code_blocks.html b/tests/commonmark/110-Fenced_code_blocks.html new file mode 100644 index 0000000..cd2b8f4 --- /dev/null +++ b/tests/commonmark/110-Fenced_code_blocks.html @@ -0,0 +1,4 @@ +
def foo(x)
+  return 3
+end
+
\ No newline at end of file diff --git a/tests/commonmark/110-Fenced_code_blocks.md b/tests/commonmark/110-Fenced_code_blocks.md new file mode 100644 index 0000000..cefccb0 --- /dev/null +++ b/tests/commonmark/110-Fenced_code_blocks.md @@ -0,0 +1,5 @@ +```ruby +def foo(x) + return 3 +end +``` \ No newline at end of file diff --git a/tests/commonmark/113-Fenced_code_blocks.html b/tests/commonmark/113-Fenced_code_blocks.html new file mode 100644 index 0000000..9da0fe5 --- /dev/null +++ b/tests/commonmark/113-Fenced_code_blocks.html @@ -0,0 +1,2 @@ +

aa +foo

\ No newline at end of file diff --git a/tests/commonmark/113-Fenced_code_blocks.md b/tests/commonmark/113-Fenced_code_blocks.md new file mode 100644 index 0000000..547eb8e --- /dev/null +++ b/tests/commonmark/113-Fenced_code_blocks.md @@ -0,0 +1,2 @@ +``` aa ``` +foo \ No newline at end of file diff --git a/tests/commonmark/114-Fenced_code_blocks.html b/tests/commonmark/114-Fenced_code_blocks.html new file mode 100644 index 0000000..2329bb5 --- /dev/null +++ b/tests/commonmark/114-Fenced_code_blocks.html @@ -0,0 +1,2 @@ +
``` aaa
+
\ No newline at end of file diff --git a/tests/commonmark/114-Fenced_code_blocks.md b/tests/commonmark/114-Fenced_code_blocks.md new file mode 100644 index 0000000..e8228e3 --- /dev/null +++ b/tests/commonmark/114-Fenced_code_blocks.md @@ -0,0 +1,3 @@ +``` +``` aaa +``` \ No newline at end of file diff --git a/tests/commonmark/115-HTML_blocks.html b/tests/commonmark/115-HTML_blocks.html new file mode 100644 index 0000000..9e597dd --- /dev/null +++ b/tests/commonmark/115-HTML_blocks.html @@ -0,0 +1,8 @@ + + + + +
+ hi +
+

okay.

\ No newline at end of file diff --git a/tests/commonmark/115-HTML_blocks.md b/tests/commonmark/115-HTML_blocks.md new file mode 100644 index 0000000..e190b8f --- /dev/null +++ b/tests/commonmark/115-HTML_blocks.md @@ -0,0 +1,9 @@ + + + + +
+ hi +
+ +okay. \ No newline at end of file diff --git a/tests/commonmark/12-Precedence.html b/tests/commonmark/12-Precedence.html new file mode 100644 index 0000000..d82bd96 --- /dev/null +++ b/tests/commonmark/12-Precedence.html @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/tests/commonmark/12-Precedence.md b/tests/commonmark/12-Precedence.md new file mode 100644 index 0000000..4e4c0e4 --- /dev/null +++ b/tests/commonmark/12-Precedence.md @@ -0,0 +1,2 @@ +- `one +- two` \ No newline at end of file diff --git a/tests/commonmark/125-HTML_blocks.html b/tests/commonmark/125-HTML_blocks.html new file mode 100644 index 0000000..b014991 --- /dev/null +++ b/tests/commonmark/125-HTML_blocks.html @@ -0,0 +1 @@ +
*foo*
\ No newline at end of file diff --git a/tests/commonmark/125-HTML_blocks.md b/tests/commonmark/125-HTML_blocks.md new file mode 100644 index 0000000..b014991 --- /dev/null +++ b/tests/commonmark/125-HTML_blocks.md @@ -0,0 +1 @@ +
*foo*
\ No newline at end of file diff --git a/tests/commonmark/126-HTML_blocks.html b/tests/commonmark/126-HTML_blocks.html new file mode 100644 index 0000000..a50519f --- /dev/null +++ b/tests/commonmark/126-HTML_blocks.html @@ -0,0 +1,3 @@ +
+foo +
\ No newline at end of file diff --git a/tests/commonmark/126-HTML_blocks.md b/tests/commonmark/126-HTML_blocks.md new file mode 100644 index 0000000..a50519f --- /dev/null +++ b/tests/commonmark/126-HTML_blocks.md @@ -0,0 +1,3 @@ +
+foo +
\ No newline at end of file diff --git a/tests/commonmark/129-HTML_blocks.html b/tests/commonmark/129-HTML_blocks.html new file mode 100644 index 0000000..8e298cc --- /dev/null +++ b/tests/commonmark/129-HTML_blocks.html @@ -0,0 +1,3 @@ + +*bar* + \ No newline at end of file diff --git a/tests/commonmark/129-HTML_blocks.md b/tests/commonmark/129-HTML_blocks.md new file mode 100644 index 0000000..8e298cc --- /dev/null +++ b/tests/commonmark/129-HTML_blocks.md @@ -0,0 +1,3 @@ + +*bar* + \ No newline at end of file diff --git a/tests/commonmark/13-Thematic_breaks.html b/tests/commonmark/13-Thematic_breaks.html new file mode 100644 index 0000000..a8c0327 --- /dev/null +++ b/tests/commonmark/13-Thematic_breaks.html @@ -0,0 +1,3 @@ +
+
+
\ No newline at end of file diff --git a/tests/commonmark/13-Thematic_breaks.md b/tests/commonmark/13-Thematic_breaks.md new file mode 100644 index 0000000..4db8a27 --- /dev/null +++ b/tests/commonmark/13-Thematic_breaks.md @@ -0,0 +1,3 @@ +*** +--- +___ \ No newline at end of file diff --git a/tests/commonmark/134-HTML_blocks.html b/tests/commonmark/134-HTML_blocks.html new file mode 100644 index 0000000..a98ceb5 --- /dev/null +++ b/tests/commonmark/134-HTML_blocks.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/134-HTML_blocks.md b/tests/commonmark/134-HTML_blocks.md new file mode 100644 index 0000000..ba8e614 --- /dev/null +++ b/tests/commonmark/134-HTML_blocks.md @@ -0,0 +1 @@ +*foo* \ No newline at end of file diff --git a/tests/commonmark/135-HTML_blocks.html b/tests/commonmark/135-HTML_blocks.html new file mode 100644 index 0000000..58c9fde --- /dev/null +++ b/tests/commonmark/135-HTML_blocks.html @@ -0,0 +1,7 @@ +

+import Text.HTML.TagSoup
+
+main :: IO ()
+main = print $ parseTags tags
+
+

okay

\ No newline at end of file diff --git a/tests/commonmark/135-HTML_blocks.md b/tests/commonmark/135-HTML_blocks.md new file mode 100644 index 0000000..00fba43 --- /dev/null +++ b/tests/commonmark/135-HTML_blocks.md @@ -0,0 +1,7 @@ +

+import Text.HTML.TagSoup
+
+main :: IO ()
+main = print $ parseTags tags
+
+okay \ No newline at end of file diff --git a/tests/commonmark/136-HTML_blocks.html b/tests/commonmark/136-HTML_blocks.html new file mode 100644 index 0000000..8fc23c2 --- /dev/null +++ b/tests/commonmark/136-HTML_blocks.html @@ -0,0 +1,6 @@ + +

okay

\ No newline at end of file diff --git a/tests/commonmark/136-HTML_blocks.md b/tests/commonmark/136-HTML_blocks.md new file mode 100644 index 0000000..6fb1ec3 --- /dev/null +++ b/tests/commonmark/136-HTML_blocks.md @@ -0,0 +1,6 @@ + +okay \ No newline at end of file diff --git a/tests/commonmark/139-HTML_blocks.html b/tests/commonmark/139-HTML_blocks.html new file mode 100644 index 0000000..d02e94c --- /dev/null +++ b/tests/commonmark/139-HTML_blocks.html @@ -0,0 +1,5 @@ +
+
+foo +
+

bar

\ No newline at end of file diff --git a/tests/commonmark/139-HTML_blocks.md b/tests/commonmark/139-HTML_blocks.md new file mode 100644 index 0000000..7d6cf05 --- /dev/null +++ b/tests/commonmark/139-HTML_blocks.md @@ -0,0 +1,4 @@ +>
+> foo + +bar \ No newline at end of file diff --git a/tests/commonmark/14-Thematic_breaks.html b/tests/commonmark/14-Thematic_breaks.html new file mode 100644 index 0000000..a404daa --- /dev/null +++ b/tests/commonmark/14-Thematic_breaks.html @@ -0,0 +1 @@ +

+++

\ No newline at end of file diff --git a/tests/commonmark/14-Thematic_breaks.md b/tests/commonmark/14-Thematic_breaks.md new file mode 100644 index 0000000..737d1d4 --- /dev/null +++ b/tests/commonmark/14-Thematic_breaks.md @@ -0,0 +1 @@ ++++ \ No newline at end of file diff --git a/tests/commonmark/140-HTML_blocks.html b/tests/commonmark/140-HTML_blocks.html new file mode 100644 index 0000000..67f7422 --- /dev/null +++ b/tests/commonmark/140-HTML_blocks.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/tests/commonmark/140-HTML_blocks.md b/tests/commonmark/140-HTML_blocks.md new file mode 100644 index 0000000..41e4dd7 --- /dev/null +++ b/tests/commonmark/140-HTML_blocks.md @@ -0,0 +1,2 @@ +-
+- foo \ No newline at end of file diff --git a/tests/commonmark/141-HTML_blocks.html b/tests/commonmark/141-HTML_blocks.html new file mode 100644 index 0000000..8b90e5b --- /dev/null +++ b/tests/commonmark/141-HTML_blocks.html @@ -0,0 +1,2 @@ + +

foo

\ No newline at end of file diff --git a/tests/commonmark/141-HTML_blocks.md b/tests/commonmark/141-HTML_blocks.md new file mode 100644 index 0000000..778df6e --- /dev/null +++ b/tests/commonmark/141-HTML_blocks.md @@ -0,0 +1,2 @@ + +*foo* \ No newline at end of file diff --git a/tests/commonmark/143-HTML_blocks.html b/tests/commonmark/143-HTML_blocks.html new file mode 100644 index 0000000..b20854b --- /dev/null +++ b/tests/commonmark/143-HTML_blocks.html @@ -0,0 +1,3 @@ +1. *bar* \ No newline at end of file diff --git a/tests/commonmark/143-HTML_blocks.md b/tests/commonmark/143-HTML_blocks.md new file mode 100644 index 0000000..b20854b --- /dev/null +++ b/tests/commonmark/143-HTML_blocks.md @@ -0,0 +1,3 @@ +1. *bar* \ No newline at end of file diff --git a/tests/commonmark/148-HTML_blocks.html b/tests/commonmark/148-HTML_blocks.html new file mode 100644 index 0000000..c15120f --- /dev/null +++ b/tests/commonmark/148-HTML_blocks.html @@ -0,0 +1,3 @@ + +
<!-- foo -->
+
\ No newline at end of file diff --git a/tests/commonmark/148-HTML_blocks.md b/tests/commonmark/148-HTML_blocks.md new file mode 100644 index 0000000..642b526 --- /dev/null +++ b/tests/commonmark/148-HTML_blocks.md @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/tests/commonmark/15-Thematic_breaks.html b/tests/commonmark/15-Thematic_breaks.html new file mode 100644 index 0000000..c60d3cd --- /dev/null +++ b/tests/commonmark/15-Thematic_breaks.html @@ -0,0 +1 @@ +

===

\ No newline at end of file diff --git a/tests/commonmark/15-Thematic_breaks.md b/tests/commonmark/15-Thematic_breaks.md new file mode 100644 index 0000000..7193984 --- /dev/null +++ b/tests/commonmark/15-Thematic_breaks.md @@ -0,0 +1 @@ +=== \ No newline at end of file diff --git a/tests/commonmark/150-HTML_blocks.html b/tests/commonmark/150-HTML_blocks.html new file mode 100644 index 0000000..7e75ec6 --- /dev/null +++ b/tests/commonmark/150-HTML_blocks.html @@ -0,0 +1,4 @@ +

Foo

+
+bar +
\ No newline at end of file diff --git a/tests/commonmark/150-HTML_blocks.md b/tests/commonmark/150-HTML_blocks.md new file mode 100644 index 0000000..939b623 --- /dev/null +++ b/tests/commonmark/150-HTML_blocks.md @@ -0,0 +1,4 @@ +Foo +
+bar +
\ No newline at end of file diff --git a/tests/commonmark/152-HTML_blocks.html b/tests/commonmark/152-HTML_blocks.html new file mode 100644 index 0000000..9ade1ee --- /dev/null +++ b/tests/commonmark/152-HTML_blocks.html @@ -0,0 +1,3 @@ +

Foo + +baz

\ No newline at end of file diff --git a/tests/commonmark/152-HTML_blocks.md b/tests/commonmark/152-HTML_blocks.md new file mode 100644 index 0000000..0ad6670 --- /dev/null +++ b/tests/commonmark/152-HTML_blocks.md @@ -0,0 +1,3 @@ +Foo + +baz \ No newline at end of file diff --git a/tests/commonmark/154-HTML_blocks.html b/tests/commonmark/154-HTML_blocks.html new file mode 100644 index 0000000..aead2d9 --- /dev/null +++ b/tests/commonmark/154-HTML_blocks.html @@ -0,0 +1,3 @@ +
+*Emphasized* text. +
\ No newline at end of file diff --git a/tests/commonmark/154-HTML_blocks.md b/tests/commonmark/154-HTML_blocks.md new file mode 100644 index 0000000..aead2d9 --- /dev/null +++ b/tests/commonmark/154-HTML_blocks.md @@ -0,0 +1,3 @@ +
+*Emphasized* text. +
\ No newline at end of file diff --git a/tests/commonmark/155-HTML_blocks.html b/tests/commonmark/155-HTML_blocks.html new file mode 100644 index 0000000..c4ce623 --- /dev/null +++ b/tests/commonmark/155-HTML_blocks.html @@ -0,0 +1,7 @@ + + + + +
+Hi +
\ No newline at end of file diff --git a/tests/commonmark/155-HTML_blocks.md b/tests/commonmark/155-HTML_blocks.md new file mode 100644 index 0000000..27d03df --- /dev/null +++ b/tests/commonmark/155-HTML_blocks.md @@ -0,0 +1,11 @@ + + + + + + + + +
+Hi +
\ No newline at end of file diff --git a/tests/commonmark/157-Link_reference_definitions.html b/tests/commonmark/157-Link_reference_definitions.html new file mode 100644 index 0000000..de843ed --- /dev/null +++ b/tests/commonmark/157-Link_reference_definitions.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/157-Link_reference_definitions.md b/tests/commonmark/157-Link_reference_definitions.md new file mode 100644 index 0000000..df7cd03 --- /dev/null +++ b/tests/commonmark/157-Link_reference_definitions.md @@ -0,0 +1,3 @@ +[foo]: /url "title" + +[foo] \ No newline at end of file diff --git a/tests/commonmark/16-Thematic_breaks.html b/tests/commonmark/16-Thematic_breaks.html new file mode 100644 index 0000000..9961f61 --- /dev/null +++ b/tests/commonmark/16-Thematic_breaks.html @@ -0,0 +1,3 @@ +

-- +** +__

\ No newline at end of file diff --git a/tests/commonmark/16-Thematic_breaks.md b/tests/commonmark/16-Thematic_breaks.md new file mode 100644 index 0000000..bb229de --- /dev/null +++ b/tests/commonmark/16-Thematic_breaks.md @@ -0,0 +1,3 @@ +-- +** +__ \ No newline at end of file diff --git a/tests/commonmark/162-Link_reference_definitions.html b/tests/commonmark/162-Link_reference_definitions.html new file mode 100644 index 0000000..fa204c2 --- /dev/null +++ b/tests/commonmark/162-Link_reference_definitions.html @@ -0,0 +1,3 @@ +

[foo]: /url 'title

+

with blank line'

+

[foo]

\ No newline at end of file diff --git a/tests/commonmark/162-Link_reference_definitions.md b/tests/commonmark/162-Link_reference_definitions.md new file mode 100644 index 0000000..1b8c6e6 --- /dev/null +++ b/tests/commonmark/162-Link_reference_definitions.md @@ -0,0 +1,5 @@ +[foo]: /url 'title + +with blank line' + +[foo] \ No newline at end of file diff --git a/tests/commonmark/164-Link_reference_definitions.html b/tests/commonmark/164-Link_reference_definitions.html new file mode 100644 index 0000000..88ee0dd --- /dev/null +++ b/tests/commonmark/164-Link_reference_definitions.html @@ -0,0 +1,2 @@ +

[foo]:

+

[foo]

\ No newline at end of file diff --git a/tests/commonmark/164-Link_reference_definitions.md b/tests/commonmark/164-Link_reference_definitions.md new file mode 100644 index 0000000..f2994a4 --- /dev/null +++ b/tests/commonmark/164-Link_reference_definitions.md @@ -0,0 +1,3 @@ +[foo]: + +[foo] \ No newline at end of file diff --git a/tests/commonmark/166-Link_reference_definitions.html b/tests/commonmark/166-Link_reference_definitions.html new file mode 100644 index 0000000..0d38961 --- /dev/null +++ b/tests/commonmark/166-Link_reference_definitions.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/166-Link_reference_definitions.md b/tests/commonmark/166-Link_reference_definitions.md new file mode 100644 index 0000000..d50462f --- /dev/null +++ b/tests/commonmark/166-Link_reference_definitions.md @@ -0,0 +1,3 @@ +[foo] + +[foo]: url \ No newline at end of file diff --git a/tests/commonmark/168-Link_reference_definitions.html b/tests/commonmark/168-Link_reference_definitions.html new file mode 100644 index 0000000..06917da --- /dev/null +++ b/tests/commonmark/168-Link_reference_definitions.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/168-Link_reference_definitions.md b/tests/commonmark/168-Link_reference_definitions.md new file mode 100644 index 0000000..17c42ba --- /dev/null +++ b/tests/commonmark/168-Link_reference_definitions.md @@ -0,0 +1,3 @@ +[FOO]: /url + +[Foo] \ No newline at end of file diff --git a/tests/commonmark/17-Thematic_breaks.html b/tests/commonmark/17-Thematic_breaks.html new file mode 100644 index 0000000..a8c0327 --- /dev/null +++ b/tests/commonmark/17-Thematic_breaks.html @@ -0,0 +1,3 @@ +
+
+
\ No newline at end of file diff --git a/tests/commonmark/17-Thematic_breaks.md b/tests/commonmark/17-Thematic_breaks.md new file mode 100644 index 0000000..5426fb4 --- /dev/null +++ b/tests/commonmark/17-Thematic_breaks.md @@ -0,0 +1,3 @@ + *** + *** + *** \ No newline at end of file diff --git a/tests/commonmark/170-Link_reference_definitions.html b/tests/commonmark/170-Link_reference_definitions.html new file mode 100644 index 0000000..e69de29 diff --git a/tests/commonmark/170-Link_reference_definitions.md b/tests/commonmark/170-Link_reference_definitions.md new file mode 100644 index 0000000..1e77055 --- /dev/null +++ b/tests/commonmark/170-Link_reference_definitions.md @@ -0,0 +1 @@ +[foo]: /url \ No newline at end of file diff --git a/tests/commonmark/172-Link_reference_definitions.html b/tests/commonmark/172-Link_reference_definitions.html new file mode 100644 index 0000000..ca8613b --- /dev/null +++ b/tests/commonmark/172-Link_reference_definitions.html @@ -0,0 +1 @@ +

[foo]: /url "title" ok

\ No newline at end of file diff --git a/tests/commonmark/172-Link_reference_definitions.md b/tests/commonmark/172-Link_reference_definitions.md new file mode 100644 index 0000000..624d3e4 --- /dev/null +++ b/tests/commonmark/172-Link_reference_definitions.md @@ -0,0 +1 @@ +[foo]: /url "title" ok \ No newline at end of file diff --git a/tests/commonmark/173-Link_reference_definitions.html b/tests/commonmark/173-Link_reference_definitions.html new file mode 100644 index 0000000..42cea35 --- /dev/null +++ b/tests/commonmark/173-Link_reference_definitions.html @@ -0,0 +1 @@ +

"title" ok

\ No newline at end of file diff --git a/tests/commonmark/173-Link_reference_definitions.md b/tests/commonmark/173-Link_reference_definitions.md new file mode 100644 index 0000000..73abb6f --- /dev/null +++ b/tests/commonmark/173-Link_reference_definitions.md @@ -0,0 +1,2 @@ +[foo]: /url +"title" ok \ No newline at end of file diff --git a/tests/commonmark/175-Link_reference_definitions.html b/tests/commonmark/175-Link_reference_definitions.html new file mode 100644 index 0000000..cbbdf09 --- /dev/null +++ b/tests/commonmark/175-Link_reference_definitions.html @@ -0,0 +1,3 @@ +
[foo]: /url
+
+

[foo]

\ No newline at end of file diff --git a/tests/commonmark/175-Link_reference_definitions.md b/tests/commonmark/175-Link_reference_definitions.md new file mode 100644 index 0000000..1720884 --- /dev/null +++ b/tests/commonmark/175-Link_reference_definitions.md @@ -0,0 +1,5 @@ +``` +[foo]: /url +``` + +[foo] \ No newline at end of file diff --git a/tests/commonmark/177-Link_reference_definitions.html b/tests/commonmark/177-Link_reference_definitions.html new file mode 100644 index 0000000..a036035 --- /dev/null +++ b/tests/commonmark/177-Link_reference_definitions.html @@ -0,0 +1,4 @@ +

Foo

+
+

bar

+
\ No newline at end of file diff --git a/tests/commonmark/177-Link_reference_definitions.md b/tests/commonmark/177-Link_reference_definitions.md new file mode 100644 index 0000000..4442099 --- /dev/null +++ b/tests/commonmark/177-Link_reference_definitions.md @@ -0,0 +1,3 @@ +# [Foo] +[foo]: /url +> bar \ No newline at end of file diff --git a/tests/commonmark/18-Thematic_breaks.html b/tests/commonmark/18-Thematic_breaks.html new file mode 100644 index 0000000..3806954 --- /dev/null +++ b/tests/commonmark/18-Thematic_breaks.html @@ -0,0 +1,2 @@ +
***
+
\ No newline at end of file diff --git a/tests/commonmark/18-Thematic_breaks.md b/tests/commonmark/18-Thematic_breaks.md new file mode 100644 index 0000000..a6a39e4 --- /dev/null +++ b/tests/commonmark/18-Thematic_breaks.md @@ -0,0 +1 @@ + *** \ No newline at end of file diff --git a/tests/commonmark/180-Paragraphs.html b/tests/commonmark/180-Paragraphs.html new file mode 100644 index 0000000..53d80af --- /dev/null +++ b/tests/commonmark/180-Paragraphs.html @@ -0,0 +1,2 @@ +

aaa

+

bbb

\ No newline at end of file diff --git a/tests/commonmark/180-Paragraphs.md b/tests/commonmark/180-Paragraphs.md new file mode 100644 index 0000000..c0b7069 --- /dev/null +++ b/tests/commonmark/180-Paragraphs.md @@ -0,0 +1,3 @@ +aaa + +bbb \ No newline at end of file diff --git a/tests/commonmark/181-Paragraphs.html b/tests/commonmark/181-Paragraphs.html new file mode 100644 index 0000000..b52697b --- /dev/null +++ b/tests/commonmark/181-Paragraphs.html @@ -0,0 +1,4 @@ +

aaa +bbb

+

ccc +ddd

\ No newline at end of file diff --git a/tests/commonmark/181-Paragraphs.md b/tests/commonmark/181-Paragraphs.md new file mode 100644 index 0000000..56f3b1e --- /dev/null +++ b/tests/commonmark/181-Paragraphs.md @@ -0,0 +1,5 @@ +aaa +bbb + +ccc +ddd \ No newline at end of file diff --git a/tests/commonmark/182-Paragraphs.html b/tests/commonmark/182-Paragraphs.html new file mode 100644 index 0000000..53d80af --- /dev/null +++ b/tests/commonmark/182-Paragraphs.html @@ -0,0 +1,2 @@ +

aaa

+

bbb

\ No newline at end of file diff --git a/tests/commonmark/182-Paragraphs.md b/tests/commonmark/182-Paragraphs.md new file mode 100644 index 0000000..0f437aa --- /dev/null +++ b/tests/commonmark/182-Paragraphs.md @@ -0,0 +1,4 @@ +aaa + + +bbb \ No newline at end of file diff --git a/tests/commonmark/183-Paragraphs.html b/tests/commonmark/183-Paragraphs.html new file mode 100644 index 0000000..73b4546 --- /dev/null +++ b/tests/commonmark/183-Paragraphs.html @@ -0,0 +1,2 @@ +

aaa +bbb

\ No newline at end of file diff --git a/tests/commonmark/183-Paragraphs.md b/tests/commonmark/183-Paragraphs.md new file mode 100644 index 0000000..f0d8c50 --- /dev/null +++ b/tests/commonmark/183-Paragraphs.md @@ -0,0 +1,2 @@ + aaa + bbb \ No newline at end of file diff --git a/tests/commonmark/184-Paragraphs.html b/tests/commonmark/184-Paragraphs.html new file mode 100644 index 0000000..693468a --- /dev/null +++ b/tests/commonmark/184-Paragraphs.html @@ -0,0 +1,3 @@ +

aaa +bbb +ccc

\ No newline at end of file diff --git a/tests/commonmark/184-Paragraphs.md b/tests/commonmark/184-Paragraphs.md new file mode 100644 index 0000000..bfbc438 --- /dev/null +++ b/tests/commonmark/184-Paragraphs.md @@ -0,0 +1,3 @@ +aaa + bbb + ccc \ No newline at end of file diff --git a/tests/commonmark/185-Paragraphs.html b/tests/commonmark/185-Paragraphs.html new file mode 100644 index 0000000..73b4546 --- /dev/null +++ b/tests/commonmark/185-Paragraphs.html @@ -0,0 +1,2 @@ +

aaa +bbb

\ No newline at end of file diff --git a/tests/commonmark/185-Paragraphs.md b/tests/commonmark/185-Paragraphs.md new file mode 100644 index 0000000..ddf93e8 --- /dev/null +++ b/tests/commonmark/185-Paragraphs.md @@ -0,0 +1,2 @@ + aaa +bbb \ No newline at end of file diff --git a/tests/commonmark/186-Paragraphs.html b/tests/commonmark/186-Paragraphs.html new file mode 100644 index 0000000..a14f6e7 --- /dev/null +++ b/tests/commonmark/186-Paragraphs.html @@ -0,0 +1,3 @@ +
aaa
+
+

bbb

\ No newline at end of file diff --git a/tests/commonmark/186-Paragraphs.md b/tests/commonmark/186-Paragraphs.md new file mode 100644 index 0000000..785a1d6 --- /dev/null +++ b/tests/commonmark/186-Paragraphs.md @@ -0,0 +1,2 @@ + aaa +bbb \ No newline at end of file diff --git a/tests/commonmark/187-Paragraphs.html b/tests/commonmark/187-Paragraphs.html new file mode 100644 index 0000000..eb3b72f --- /dev/null +++ b/tests/commonmark/187-Paragraphs.html @@ -0,0 +1,2 @@ +

aaa
+bbb

\ No newline at end of file diff --git a/tests/commonmark/187-Paragraphs.md b/tests/commonmark/187-Paragraphs.md new file mode 100644 index 0000000..175e777 --- /dev/null +++ b/tests/commonmark/187-Paragraphs.md @@ -0,0 +1,2 @@ +aaa +bbb \ No newline at end of file diff --git a/tests/commonmark/188-Blank_lines.html b/tests/commonmark/188-Blank_lines.html new file mode 100644 index 0000000..65bfd4d --- /dev/null +++ b/tests/commonmark/188-Blank_lines.html @@ -0,0 +1,2 @@ +

aaa

+

aaa

\ No newline at end of file diff --git a/tests/commonmark/188-Blank_lines.md b/tests/commonmark/188-Blank_lines.md new file mode 100644 index 0000000..f4f2b89 --- /dev/null +++ b/tests/commonmark/188-Blank_lines.md @@ -0,0 +1,8 @@ + + +aaa + + +# aaa + + \ No newline at end of file diff --git a/tests/commonmark/189-Block_quotes.html b/tests/commonmark/189-Block_quotes.html new file mode 100644 index 0000000..20ddddd --- /dev/null +++ b/tests/commonmark/189-Block_quotes.html @@ -0,0 +1,5 @@ +
+

Foo

+

bar +baz

+
\ No newline at end of file diff --git a/tests/commonmark/189-Block_quotes.md b/tests/commonmark/189-Block_quotes.md new file mode 100644 index 0000000..e751d8a --- /dev/null +++ b/tests/commonmark/189-Block_quotes.md @@ -0,0 +1,3 @@ +> # Foo +> bar +> baz \ No newline at end of file diff --git a/tests/commonmark/190-Block_quotes.html b/tests/commonmark/190-Block_quotes.html new file mode 100644 index 0000000..20ddddd --- /dev/null +++ b/tests/commonmark/190-Block_quotes.html @@ -0,0 +1,5 @@ +
+

Foo

+

bar +baz

+
\ No newline at end of file diff --git a/tests/commonmark/190-Block_quotes.md b/tests/commonmark/190-Block_quotes.md new file mode 100644 index 0000000..27f81b9 --- /dev/null +++ b/tests/commonmark/190-Block_quotes.md @@ -0,0 +1,3 @@ +># Foo +>bar +> baz \ No newline at end of file diff --git a/tests/commonmark/191-Block_quotes.html b/tests/commonmark/191-Block_quotes.html new file mode 100644 index 0000000..20ddddd --- /dev/null +++ b/tests/commonmark/191-Block_quotes.html @@ -0,0 +1,5 @@ +
+

Foo

+

bar +baz

+
\ No newline at end of file diff --git a/tests/commonmark/191-Block_quotes.md b/tests/commonmark/191-Block_quotes.md new file mode 100644 index 0000000..e56c4dc --- /dev/null +++ b/tests/commonmark/191-Block_quotes.md @@ -0,0 +1,3 @@ + > # Foo + > bar + > baz \ No newline at end of file diff --git a/tests/commonmark/192-Block_quotes.html b/tests/commonmark/192-Block_quotes.html new file mode 100644 index 0000000..fe3a630 --- /dev/null +++ b/tests/commonmark/192-Block_quotes.html @@ -0,0 +1,4 @@ +
> # Foo
+> bar
+> baz
+
\ No newline at end of file diff --git a/tests/commonmark/192-Block_quotes.md b/tests/commonmark/192-Block_quotes.md new file mode 100644 index 0000000..57dfd4c --- /dev/null +++ b/tests/commonmark/192-Block_quotes.md @@ -0,0 +1,3 @@ + > # Foo + > bar + > baz \ No newline at end of file diff --git a/tests/commonmark/193-Block_quotes.html b/tests/commonmark/193-Block_quotes.html new file mode 100644 index 0000000..20ddddd --- /dev/null +++ b/tests/commonmark/193-Block_quotes.html @@ -0,0 +1,5 @@ +
+

Foo

+

bar +baz

+
\ No newline at end of file diff --git a/tests/commonmark/193-Block_quotes.md b/tests/commonmark/193-Block_quotes.md new file mode 100644 index 0000000..6c0307a --- /dev/null +++ b/tests/commonmark/193-Block_quotes.md @@ -0,0 +1,3 @@ +> # Foo +> bar +baz \ No newline at end of file diff --git a/tests/commonmark/194-Block_quotes.html b/tests/commonmark/194-Block_quotes.html new file mode 100644 index 0000000..c3c2c6f --- /dev/null +++ b/tests/commonmark/194-Block_quotes.html @@ -0,0 +1,5 @@ +
+

bar +baz +foo

+
\ No newline at end of file diff --git a/tests/commonmark/194-Block_quotes.md b/tests/commonmark/194-Block_quotes.md new file mode 100644 index 0000000..fd5ee94 --- /dev/null +++ b/tests/commonmark/194-Block_quotes.md @@ -0,0 +1,3 @@ +> bar +baz +> foo \ No newline at end of file diff --git a/tests/commonmark/20-Thematic_breaks.html b/tests/commonmark/20-Thematic_breaks.html new file mode 100644 index 0000000..1d6667d --- /dev/null +++ b/tests/commonmark/20-Thematic_breaks.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/20-Thematic_breaks.md b/tests/commonmark/20-Thematic_breaks.md new file mode 100644 index 0000000..09deb64 --- /dev/null +++ b/tests/commonmark/20-Thematic_breaks.md @@ -0,0 +1 @@ +_____________________________________ \ No newline at end of file diff --git a/tests/commonmark/200-Block_quotes.html b/tests/commonmark/200-Block_quotes.html new file mode 100644 index 0000000..9836f33 --- /dev/null +++ b/tests/commonmark/200-Block_quotes.html @@ -0,0 +1,2 @@ +
+
\ No newline at end of file diff --git a/tests/commonmark/200-Block_quotes.md b/tests/commonmark/200-Block_quotes.md new file mode 100644 index 0000000..0817502 --- /dev/null +++ b/tests/commonmark/200-Block_quotes.md @@ -0,0 +1 @@ +> \ No newline at end of file diff --git a/tests/commonmark/201-Block_quotes.html b/tests/commonmark/201-Block_quotes.html new file mode 100644 index 0000000..9836f33 --- /dev/null +++ b/tests/commonmark/201-Block_quotes.html @@ -0,0 +1,2 @@ +
+
\ No newline at end of file diff --git a/tests/commonmark/201-Block_quotes.md b/tests/commonmark/201-Block_quotes.md new file mode 100644 index 0000000..8121aa6 --- /dev/null +++ b/tests/commonmark/201-Block_quotes.md @@ -0,0 +1,3 @@ +> +> +> \ No newline at end of file diff --git a/tests/commonmark/202-Block_quotes.html b/tests/commonmark/202-Block_quotes.html new file mode 100644 index 0000000..725301b --- /dev/null +++ b/tests/commonmark/202-Block_quotes.html @@ -0,0 +1,3 @@ +
+

foo

+
\ No newline at end of file diff --git a/tests/commonmark/202-Block_quotes.md b/tests/commonmark/202-Block_quotes.md new file mode 100644 index 0000000..3bf5d36 --- /dev/null +++ b/tests/commonmark/202-Block_quotes.md @@ -0,0 +1,3 @@ +> +> foo +> \ No newline at end of file diff --git a/tests/commonmark/204-Block_quotes.html b/tests/commonmark/204-Block_quotes.html new file mode 100644 index 0000000..3dd5072 --- /dev/null +++ b/tests/commonmark/204-Block_quotes.html @@ -0,0 +1,4 @@ +
+

foo +bar

+
\ No newline at end of file diff --git a/tests/commonmark/204-Block_quotes.md b/tests/commonmark/204-Block_quotes.md new file mode 100644 index 0000000..9df29c4 --- /dev/null +++ b/tests/commonmark/204-Block_quotes.md @@ -0,0 +1,2 @@ +> foo +> bar \ No newline at end of file diff --git a/tests/commonmark/205-Block_quotes.html b/tests/commonmark/205-Block_quotes.html new file mode 100644 index 0000000..418e5f2 --- /dev/null +++ b/tests/commonmark/205-Block_quotes.html @@ -0,0 +1,4 @@ +
+

foo

+

bar

+
\ No newline at end of file diff --git a/tests/commonmark/205-Block_quotes.md b/tests/commonmark/205-Block_quotes.md new file mode 100644 index 0000000..0bfc5b6 --- /dev/null +++ b/tests/commonmark/205-Block_quotes.md @@ -0,0 +1,3 @@ +> foo +> +> bar \ No newline at end of file diff --git a/tests/commonmark/206-Block_quotes.html b/tests/commonmark/206-Block_quotes.html new file mode 100644 index 0000000..6e8c75c --- /dev/null +++ b/tests/commonmark/206-Block_quotes.html @@ -0,0 +1,4 @@ +

foo

+
+

bar

+
\ No newline at end of file diff --git a/tests/commonmark/206-Block_quotes.md b/tests/commonmark/206-Block_quotes.md new file mode 100644 index 0000000..3db4d11 --- /dev/null +++ b/tests/commonmark/206-Block_quotes.md @@ -0,0 +1,2 @@ +foo +> bar \ No newline at end of file diff --git a/tests/commonmark/208-Block_quotes.html b/tests/commonmark/208-Block_quotes.html new file mode 100644 index 0000000..fd753d6 --- /dev/null +++ b/tests/commonmark/208-Block_quotes.html @@ -0,0 +1,4 @@ +
+

bar +baz

+
\ No newline at end of file diff --git a/tests/commonmark/208-Block_quotes.md b/tests/commonmark/208-Block_quotes.md new file mode 100644 index 0000000..305e7f2 --- /dev/null +++ b/tests/commonmark/208-Block_quotes.md @@ -0,0 +1,2 @@ +> bar +baz \ No newline at end of file diff --git a/tests/commonmark/209-Block_quotes.html b/tests/commonmark/209-Block_quotes.html new file mode 100644 index 0000000..71ff74e --- /dev/null +++ b/tests/commonmark/209-Block_quotes.html @@ -0,0 +1,4 @@ +
+

bar

+
+

baz

\ No newline at end of file diff --git a/tests/commonmark/209-Block_quotes.md b/tests/commonmark/209-Block_quotes.md new file mode 100644 index 0000000..66c49af --- /dev/null +++ b/tests/commonmark/209-Block_quotes.md @@ -0,0 +1,3 @@ +> bar + +baz \ No newline at end of file diff --git a/tests/commonmark/21-Thematic_breaks.html b/tests/commonmark/21-Thematic_breaks.html new file mode 100644 index 0000000..1d6667d --- /dev/null +++ b/tests/commonmark/21-Thematic_breaks.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/21-Thematic_breaks.md b/tests/commonmark/21-Thematic_breaks.md new file mode 100644 index 0000000..f49558a --- /dev/null +++ b/tests/commonmark/21-Thematic_breaks.md @@ -0,0 +1 @@ + - - - \ No newline at end of file diff --git a/tests/commonmark/211-Block_quotes.html b/tests/commonmark/211-Block_quotes.html new file mode 100644 index 0000000..93ca8bf --- /dev/null +++ b/tests/commonmark/211-Block_quotes.html @@ -0,0 +1,8 @@ +
+
+
+

foo +bar

+
+
+
\ No newline at end of file diff --git a/tests/commonmark/211-Block_quotes.md b/tests/commonmark/211-Block_quotes.md new file mode 100644 index 0000000..a047303 --- /dev/null +++ b/tests/commonmark/211-Block_quotes.md @@ -0,0 +1,2 @@ +> > > foo +bar \ No newline at end of file diff --git a/tests/commonmark/212-Block_quotes.html b/tests/commonmark/212-Block_quotes.html new file mode 100644 index 0000000..1fcf773 --- /dev/null +++ b/tests/commonmark/212-Block_quotes.html @@ -0,0 +1,9 @@ +
+
+
+

foo +bar +baz

+
+
+
\ No newline at end of file diff --git a/tests/commonmark/212-Block_quotes.md b/tests/commonmark/212-Block_quotes.md new file mode 100644 index 0000000..84e57fc --- /dev/null +++ b/tests/commonmark/212-Block_quotes.md @@ -0,0 +1,3 @@ +>>> foo +> bar +>>baz \ No newline at end of file diff --git a/tests/commonmark/214-List_items.html b/tests/commonmark/214-List_items.html new file mode 100644 index 0000000..8563be2 --- /dev/null +++ b/tests/commonmark/214-List_items.html @@ -0,0 +1,7 @@ +

A paragraph +with two lines.

+
indented code
+
+
+

A block quote.

+
\ No newline at end of file diff --git a/tests/commonmark/214-List_items.md b/tests/commonmark/214-List_items.md new file mode 100644 index 0000000..734888b --- /dev/null +++ b/tests/commonmark/214-List_items.md @@ -0,0 +1,6 @@ +A paragraph +with two lines. + + indented code + +> A block quote. \ No newline at end of file diff --git a/tests/commonmark/215-List_items.html b/tests/commonmark/215-List_items.html new file mode 100644 index 0000000..74dbf06 --- /dev/null +++ b/tests/commonmark/215-List_items.html @@ -0,0 +1,11 @@ +
    +
  1. +

    A paragraph +with two lines.

    +
    indented code
    +
    +
    +

    A block quote.

    +
    +
  2. +
\ No newline at end of file diff --git a/tests/commonmark/215-List_items.md b/tests/commonmark/215-List_items.md new file mode 100644 index 0000000..315be8e --- /dev/null +++ b/tests/commonmark/215-List_items.md @@ -0,0 +1,6 @@ +1. A paragraph + with two lines. + + indented code + + > A block quote. \ No newline at end of file diff --git a/tests/commonmark/217-List_items.html b/tests/commonmark/217-List_items.html new file mode 100644 index 0000000..dff8ed2 --- /dev/null +++ b/tests/commonmark/217-List_items.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/tests/commonmark/217-List_items.md b/tests/commonmark/217-List_items.md new file mode 100644 index 0000000..78174af --- /dev/null +++ b/tests/commonmark/217-List_items.md @@ -0,0 +1,3 @@ +- one + + two \ No newline at end of file diff --git a/tests/commonmark/219-List_items.html b/tests/commonmark/219-List_items.html new file mode 100644 index 0000000..dff8ed2 --- /dev/null +++ b/tests/commonmark/219-List_items.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/tests/commonmark/219-List_items.md b/tests/commonmark/219-List_items.md new file mode 100644 index 0000000..3384a6a --- /dev/null +++ b/tests/commonmark/219-List_items.md @@ -0,0 +1,3 @@ + - one + + two \ No newline at end of file diff --git a/tests/commonmark/22-Thematic_breaks.html b/tests/commonmark/22-Thematic_breaks.html new file mode 100644 index 0000000..1d6667d --- /dev/null +++ b/tests/commonmark/22-Thematic_breaks.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/22-Thematic_breaks.md b/tests/commonmark/22-Thematic_breaks.md new file mode 100644 index 0000000..73c9e8e --- /dev/null +++ b/tests/commonmark/22-Thematic_breaks.md @@ -0,0 +1 @@ + ** * ** * ** * ** \ No newline at end of file diff --git a/tests/commonmark/220-List_items.html b/tests/commonmark/220-List_items.html new file mode 100644 index 0000000..52dbeaa --- /dev/null +++ b/tests/commonmark/220-List_items.html @@ -0,0 +1,10 @@ +
+
+
    +
  1. +

    one

    +

    two

    +
  2. +
+
+
\ No newline at end of file diff --git a/tests/commonmark/220-List_items.md b/tests/commonmark/220-List_items.md new file mode 100644 index 0000000..336564c --- /dev/null +++ b/tests/commonmark/220-List_items.md @@ -0,0 +1,3 @@ + > > 1. one +>> +>> two \ No newline at end of file diff --git a/tests/commonmark/221-List_items.html b/tests/commonmark/221-List_items.html new file mode 100644 index 0000000..c043cc9 --- /dev/null +++ b/tests/commonmark/221-List_items.html @@ -0,0 +1,8 @@ +
+
+
    +
  • one
  • +
+

two

+
+
\ No newline at end of file diff --git a/tests/commonmark/221-List_items.md b/tests/commonmark/221-List_items.md new file mode 100644 index 0000000..31bc81d --- /dev/null +++ b/tests/commonmark/221-List_items.md @@ -0,0 +1,3 @@ +>>- one +>> + > > two \ No newline at end of file diff --git a/tests/commonmark/222-List_items.html b/tests/commonmark/222-List_items.html new file mode 100644 index 0000000..433e3a9 --- /dev/null +++ b/tests/commonmark/222-List_items.html @@ -0,0 +1,2 @@ +

-one

+

2.two

\ No newline at end of file diff --git a/tests/commonmark/222-List_items.md b/tests/commonmark/222-List_items.md new file mode 100644 index 0000000..762b89b --- /dev/null +++ b/tests/commonmark/222-List_items.md @@ -0,0 +1,3 @@ +-one + +2.two \ No newline at end of file diff --git a/tests/commonmark/223-List_items.html b/tests/commonmark/223-List_items.html new file mode 100644 index 0000000..c117426 --- /dev/null +++ b/tests/commonmark/223-List_items.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/tests/commonmark/223-List_items.md b/tests/commonmark/223-List_items.md new file mode 100644 index 0000000..dbee170 --- /dev/null +++ b/tests/commonmark/223-List_items.md @@ -0,0 +1,4 @@ +- foo + + + bar \ No newline at end of file diff --git a/tests/commonmark/224-List_items.html b/tests/commonmark/224-List_items.html new file mode 100644 index 0000000..20c1a4c --- /dev/null +++ b/tests/commonmark/224-List_items.html @@ -0,0 +1,11 @@ +
    +
  1. +

    foo

    +
    bar
    +
    +

    baz

    +
    +

    bam

    +
    +
  2. +
\ No newline at end of file diff --git a/tests/commonmark/224-List_items.md b/tests/commonmark/224-List_items.md new file mode 100644 index 0000000..b5ff724 --- /dev/null +++ b/tests/commonmark/224-List_items.md @@ -0,0 +1,9 @@ +1. foo + + ``` + bar + ``` + + baz + + > bam \ No newline at end of file diff --git a/tests/commonmark/23-Thematic_breaks.html b/tests/commonmark/23-Thematic_breaks.html new file mode 100644 index 0000000..1d6667d --- /dev/null +++ b/tests/commonmark/23-Thematic_breaks.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/23-Thematic_breaks.md b/tests/commonmark/23-Thematic_breaks.md new file mode 100644 index 0000000..fbd716e --- /dev/null +++ b/tests/commonmark/23-Thematic_breaks.md @@ -0,0 +1 @@ +- - - - \ No newline at end of file diff --git a/tests/commonmark/230-List_items.html b/tests/commonmark/230-List_items.html new file mode 100644 index 0000000..f3a29a7 --- /dev/null +++ b/tests/commonmark/230-List_items.html @@ -0,0 +1 @@ +

-1. not ok

\ No newline at end of file diff --git a/tests/commonmark/230-List_items.md b/tests/commonmark/230-List_items.md new file mode 100644 index 0000000..86ac1ac --- /dev/null +++ b/tests/commonmark/230-List_items.md @@ -0,0 +1 @@ +-1. not ok \ No newline at end of file diff --git a/tests/commonmark/233-List_items.html b/tests/commonmark/233-List_items.html new file mode 100644 index 0000000..79acaf5 --- /dev/null +++ b/tests/commonmark/233-List_items.html @@ -0,0 +1,5 @@ +
indented code
+
+

paragraph

+
more code
+
\ No newline at end of file diff --git a/tests/commonmark/233-List_items.md b/tests/commonmark/233-List_items.md new file mode 100644 index 0000000..754fa62 --- /dev/null +++ b/tests/commonmark/233-List_items.md @@ -0,0 +1,5 @@ + indented code + +paragraph + + more code \ No newline at end of file diff --git a/tests/commonmark/236-List_items.html b/tests/commonmark/236-List_items.html new file mode 100644 index 0000000..fc651ec --- /dev/null +++ b/tests/commonmark/236-List_items.html @@ -0,0 +1,2 @@ +

foo

+

bar

\ No newline at end of file diff --git a/tests/commonmark/236-List_items.md b/tests/commonmark/236-List_items.md new file mode 100644 index 0000000..aa69f64 --- /dev/null +++ b/tests/commonmark/236-List_items.md @@ -0,0 +1,3 @@ + foo + +bar \ No newline at end of file diff --git a/tests/commonmark/238-List_items.html b/tests/commonmark/238-List_items.html new file mode 100644 index 0000000..c117426 --- /dev/null +++ b/tests/commonmark/238-List_items.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/tests/commonmark/238-List_items.md b/tests/commonmark/238-List_items.md new file mode 100644 index 0000000..2669cb0 --- /dev/null +++ b/tests/commonmark/238-List_items.md @@ -0,0 +1,3 @@ +- foo + + bar \ No newline at end of file diff --git a/tests/commonmark/24-Thematic_breaks.html b/tests/commonmark/24-Thematic_breaks.html new file mode 100644 index 0000000..1d6667d --- /dev/null +++ b/tests/commonmark/24-Thematic_breaks.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/24-Thematic_breaks.md b/tests/commonmark/24-Thematic_breaks.md new file mode 100644 index 0000000..13d4d55 --- /dev/null +++ b/tests/commonmark/24-Thematic_breaks.md @@ -0,0 +1 @@ +- - - - \ No newline at end of file diff --git a/tests/commonmark/242-List_items.html b/tests/commonmark/242-List_items.html new file mode 100644 index 0000000..c15ea05 --- /dev/null +++ b/tests/commonmark/242-List_items.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/tests/commonmark/242-List_items.md b/tests/commonmark/242-List_items.md new file mode 100644 index 0000000..4d53226 --- /dev/null +++ b/tests/commonmark/242-List_items.md @@ -0,0 +1,3 @@ +- foo +- +- bar \ No newline at end of file diff --git a/tests/commonmark/243-List_items.html b/tests/commonmark/243-List_items.html new file mode 100644 index 0000000..c15ea05 --- /dev/null +++ b/tests/commonmark/243-List_items.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/tests/commonmark/243-List_items.md b/tests/commonmark/243-List_items.md new file mode 100644 index 0000000..2fd44d0 --- /dev/null +++ b/tests/commonmark/243-List_items.md @@ -0,0 +1,3 @@ +- foo +- +- bar \ No newline at end of file diff --git a/tests/commonmark/244-List_items.html b/tests/commonmark/244-List_items.html new file mode 100644 index 0000000..5b1cc29 --- /dev/null +++ b/tests/commonmark/244-List_items.html @@ -0,0 +1,5 @@ +
    +
  1. foo
  2. +
  3. +
  4. bar
  5. +
\ No newline at end of file diff --git a/tests/commonmark/244-List_items.md b/tests/commonmark/244-List_items.md new file mode 100644 index 0000000..390f803 --- /dev/null +++ b/tests/commonmark/244-List_items.md @@ -0,0 +1,3 @@ +1. foo +2. +3. bar \ No newline at end of file diff --git a/tests/commonmark/246-List_items.html b/tests/commonmark/246-List_items.html new file mode 100644 index 0000000..fe6d52c --- /dev/null +++ b/tests/commonmark/246-List_items.html @@ -0,0 +1,4 @@ +

foo +*

+

foo +1.

\ No newline at end of file diff --git a/tests/commonmark/246-List_items.md b/tests/commonmark/246-List_items.md new file mode 100644 index 0000000..b0f1ac6 --- /dev/null +++ b/tests/commonmark/246-List_items.md @@ -0,0 +1,5 @@ +foo +* + +foo +1. \ No newline at end of file diff --git a/tests/commonmark/250-List_items.html b/tests/commonmark/250-List_items.html new file mode 100644 index 0000000..7796990 --- /dev/null +++ b/tests/commonmark/250-List_items.html @@ -0,0 +1,7 @@ +
1.  A paragraph
+    with two lines.
+
+        indented code
+
+    > A block quote.
+
\ No newline at end of file diff --git a/tests/commonmark/250-List_items.md b/tests/commonmark/250-List_items.md new file mode 100644 index 0000000..54bc0b7 --- /dev/null +++ b/tests/commonmark/250-List_items.md @@ -0,0 +1,6 @@ + 1. A paragraph + with two lines. + + indented code + + > A block quote. \ No newline at end of file diff --git a/tests/commonmark/252-List_items.html b/tests/commonmark/252-List_items.html new file mode 100644 index 0000000..04468e3 --- /dev/null +++ b/tests/commonmark/252-List_items.html @@ -0,0 +1,4 @@ +
    +
  1. A paragraph +with two lines.
  2. +
\ No newline at end of file diff --git a/tests/commonmark/252-List_items.md b/tests/commonmark/252-List_items.md new file mode 100644 index 0000000..4c8ecbe --- /dev/null +++ b/tests/commonmark/252-List_items.md @@ -0,0 +1,2 @@ + 1. A paragraph + with two lines. \ No newline at end of file diff --git a/tests/commonmark/253-List_items.html b/tests/commonmark/253-List_items.html new file mode 100644 index 0000000..4099581 --- /dev/null +++ b/tests/commonmark/253-List_items.html @@ -0,0 +1,10 @@ +
+
    +
  1. +
    +

    Blockquote +continued here.

    +
    +
  2. +
+
\ No newline at end of file diff --git a/tests/commonmark/253-List_items.md b/tests/commonmark/253-List_items.md new file mode 100644 index 0000000..9585690 --- /dev/null +++ b/tests/commonmark/253-List_items.md @@ -0,0 +1,2 @@ +> 1. > Blockquote +continued here. \ No newline at end of file diff --git a/tests/commonmark/254-List_items.html b/tests/commonmark/254-List_items.html new file mode 100644 index 0000000..4099581 --- /dev/null +++ b/tests/commonmark/254-List_items.html @@ -0,0 +1,10 @@ +
+
    +
  1. +
    +

    Blockquote +continued here.

    +
    +
  2. +
+
\ No newline at end of file diff --git a/tests/commonmark/254-List_items.md b/tests/commonmark/254-List_items.md new file mode 100644 index 0000000..e90c816 --- /dev/null +++ b/tests/commonmark/254-List_items.md @@ -0,0 +1,2 @@ +> 1. > Blockquote +> continued here. \ No newline at end of file diff --git a/tests/commonmark/259-List_items.html b/tests/commonmark/259-List_items.html new file mode 100644 index 0000000..6628373 --- /dev/null +++ b/tests/commonmark/259-List_items.html @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/tests/commonmark/259-List_items.md b/tests/commonmark/259-List_items.md new file mode 100644 index 0000000..e540537 --- /dev/null +++ b/tests/commonmark/259-List_items.md @@ -0,0 +1 @@ +- - foo \ No newline at end of file diff --git a/tests/commonmark/26-Thematic_breaks.html b/tests/commonmark/26-Thematic_breaks.html new file mode 100644 index 0000000..708ff67 --- /dev/null +++ b/tests/commonmark/26-Thematic_breaks.html @@ -0,0 +1 @@ +

-

\ No newline at end of file diff --git a/tests/commonmark/26-Thematic_breaks.md b/tests/commonmark/26-Thematic_breaks.md new file mode 100644 index 0000000..f3f09de --- /dev/null +++ b/tests/commonmark/26-Thematic_breaks.md @@ -0,0 +1 @@ + *-* \ No newline at end of file diff --git a/tests/commonmark/264-Lists.html b/tests/commonmark/264-Lists.html new file mode 100644 index 0000000..aeb53c6 --- /dev/null +++ b/tests/commonmark/264-Lists.html @@ -0,0 +1,5 @@ +

Foo

+ \ No newline at end of file diff --git a/tests/commonmark/264-Lists.md b/tests/commonmark/264-Lists.md new file mode 100644 index 0000000..2875544 --- /dev/null +++ b/tests/commonmark/264-Lists.md @@ -0,0 +1,3 @@ +Foo +- bar +- baz \ No newline at end of file diff --git a/tests/commonmark/266-Lists.html b/tests/commonmark/266-Lists.html new file mode 100644 index 0000000..b8ff6a4 --- /dev/null +++ b/tests/commonmark/266-Lists.html @@ -0,0 +1,4 @@ +

The number of windows in my house is

+
    +
  1. The number of doors is 6.
  2. +
\ No newline at end of file diff --git a/tests/commonmark/266-Lists.md b/tests/commonmark/266-Lists.md new file mode 100644 index 0000000..233159f --- /dev/null +++ b/tests/commonmark/266-Lists.md @@ -0,0 +1,2 @@ +The number of windows in my house is +1. The number of doors is 6. \ No newline at end of file diff --git a/tests/commonmark/269-Lists.html b/tests/commonmark/269-Lists.html new file mode 100644 index 0000000..83d3f15 --- /dev/null +++ b/tests/commonmark/269-Lists.html @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/tests/commonmark/269-Lists.md b/tests/commonmark/269-Lists.md new file mode 100644 index 0000000..fe40c1c --- /dev/null +++ b/tests/commonmark/269-Lists.md @@ -0,0 +1,7 @@ +- foo +- bar + + + +- baz +- bim \ No newline at end of file diff --git a/tests/commonmark/277-Lists.html b/tests/commonmark/277-Lists.html new file mode 100644 index 0000000..2624420 --- /dev/null +++ b/tests/commonmark/277-Lists.html @@ -0,0 +1,10 @@ + \ No newline at end of file diff --git a/tests/commonmark/277-Lists.md b/tests/commonmark/277-Lists.md new file mode 100644 index 0000000..766f24d --- /dev/null +++ b/tests/commonmark/277-Lists.md @@ -0,0 +1,7 @@ +- a +- ``` + b + + + ``` +- c \ No newline at end of file diff --git a/tests/commonmark/279-Lists.html b/tests/commonmark/279-Lists.html new file mode 100644 index 0000000..aaaef2f --- /dev/null +++ b/tests/commonmark/279-Lists.html @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/tests/commonmark/279-Lists.md b/tests/commonmark/279-Lists.md new file mode 100644 index 0000000..de32028 --- /dev/null +++ b/tests/commonmark/279-Lists.md @@ -0,0 +1,4 @@ +* a + > b + > +* c \ No newline at end of file diff --git a/tests/commonmark/28-Thematic_breaks.html b/tests/commonmark/28-Thematic_breaks.html new file mode 100644 index 0000000..55344f1 --- /dev/null +++ b/tests/commonmark/28-Thematic_breaks.html @@ -0,0 +1,3 @@ +

Foo

+
+

bar

\ No newline at end of file diff --git a/tests/commonmark/28-Thematic_breaks.md b/tests/commonmark/28-Thematic_breaks.md new file mode 100644 index 0000000..4ef9ebb --- /dev/null +++ b/tests/commonmark/28-Thematic_breaks.md @@ -0,0 +1,3 @@ +Foo +*** +bar \ No newline at end of file diff --git a/tests/commonmark/281-Lists.html b/tests/commonmark/281-Lists.html new file mode 100644 index 0000000..08f6fe8 --- /dev/null +++ b/tests/commonmark/281-Lists.html @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/tests/commonmark/281-Lists.md b/tests/commonmark/281-Lists.md new file mode 100644 index 0000000..cb275b1 --- /dev/null +++ b/tests/commonmark/281-Lists.md @@ -0,0 +1 @@ +- a \ No newline at end of file diff --git a/tests/commonmark/282-Lists.html b/tests/commonmark/282-Lists.html new file mode 100644 index 0000000..bb3b4a8 --- /dev/null +++ b/tests/commonmark/282-Lists.html @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/tests/commonmark/282-Lists.md b/tests/commonmark/282-Lists.md new file mode 100644 index 0000000..aacd716 --- /dev/null +++ b/tests/commonmark/282-Lists.md @@ -0,0 +1,2 @@ +- a + - b \ No newline at end of file diff --git a/tests/commonmark/283-Lists.html b/tests/commonmark/283-Lists.html new file mode 100644 index 0000000..fc831d4 --- /dev/null +++ b/tests/commonmark/283-Lists.html @@ -0,0 +1,7 @@ +
    +
  1. +
    foo
    +
    +

    bar

    +
  2. +
\ No newline at end of file diff --git a/tests/commonmark/283-Lists.md b/tests/commonmark/283-Lists.md new file mode 100644 index 0000000..a04fff8 --- /dev/null +++ b/tests/commonmark/283-Lists.md @@ -0,0 +1,5 @@ +1. ``` + foo + ``` + + bar \ No newline at end of file diff --git a/tests/commonmark/284-Lists.html b/tests/commonmark/284-Lists.html new file mode 100644 index 0000000..d970bee --- /dev/null +++ b/tests/commonmark/284-Lists.html @@ -0,0 +1,9 @@ + \ No newline at end of file diff --git a/tests/commonmark/284-Lists.md b/tests/commonmark/284-Lists.md new file mode 100644 index 0000000..eca6188 --- /dev/null +++ b/tests/commonmark/284-Lists.md @@ -0,0 +1,4 @@ +* foo + * bar + + baz \ No newline at end of file diff --git a/tests/commonmark/286-Inlines.html b/tests/commonmark/286-Inlines.html new file mode 100644 index 0000000..9e1b083 --- /dev/null +++ b/tests/commonmark/286-Inlines.html @@ -0,0 +1 @@ +

hilo`

\ No newline at end of file diff --git a/tests/commonmark/286-Inlines.md b/tests/commonmark/286-Inlines.md new file mode 100644 index 0000000..8c89e0a --- /dev/null +++ b/tests/commonmark/286-Inlines.md @@ -0,0 +1 @@ +`hi`lo` \ No newline at end of file diff --git a/tests/commonmark/29-Thematic_breaks.html b/tests/commonmark/29-Thematic_breaks.html new file mode 100644 index 0000000..d754c5e --- /dev/null +++ b/tests/commonmark/29-Thematic_breaks.html @@ -0,0 +1,2 @@ +

Foo

+

bar

\ No newline at end of file diff --git a/tests/commonmark/29-Thematic_breaks.md b/tests/commonmark/29-Thematic_breaks.md new file mode 100644 index 0000000..006f478 --- /dev/null +++ b/tests/commonmark/29-Thematic_breaks.md @@ -0,0 +1,3 @@ +Foo +--- +bar \ No newline at end of file diff --git a/tests/commonmark/290-Backslash_escapes.html b/tests/commonmark/290-Backslash_escapes.html new file mode 100644 index 0000000..d8671e6 --- /dev/null +++ b/tests/commonmark/290-Backslash_escapes.html @@ -0,0 +1 @@ +

\emphasis

\ No newline at end of file diff --git a/tests/commonmark/290-Backslash_escapes.md b/tests/commonmark/290-Backslash_escapes.md new file mode 100644 index 0000000..e4853df --- /dev/null +++ b/tests/commonmark/290-Backslash_escapes.md @@ -0,0 +1 @@ +\\*emphasis* \ No newline at end of file diff --git a/tests/commonmark/292-Backslash_escapes.html b/tests/commonmark/292-Backslash_escapes.html new file mode 100644 index 0000000..4eda9f5 --- /dev/null +++ b/tests/commonmark/292-Backslash_escapes.html @@ -0,0 +1 @@ +

\[\`

\ No newline at end of file diff --git a/tests/commonmark/292-Backslash_escapes.md b/tests/commonmark/292-Backslash_escapes.md new file mode 100644 index 0000000..6cfe3d9 --- /dev/null +++ b/tests/commonmark/292-Backslash_escapes.md @@ -0,0 +1 @@ +`` \[\` `` \ No newline at end of file diff --git a/tests/commonmark/293-Backslash_escapes.html b/tests/commonmark/293-Backslash_escapes.html new file mode 100644 index 0000000..95d2c91 --- /dev/null +++ b/tests/commonmark/293-Backslash_escapes.html @@ -0,0 +1,2 @@ +
\[\]
+
\ No newline at end of file diff --git a/tests/commonmark/293-Backslash_escapes.md b/tests/commonmark/293-Backslash_escapes.md new file mode 100644 index 0000000..f8c906b --- /dev/null +++ b/tests/commonmark/293-Backslash_escapes.md @@ -0,0 +1 @@ + \[\] \ No newline at end of file diff --git a/tests/commonmark/294-Backslash_escapes.html b/tests/commonmark/294-Backslash_escapes.html new file mode 100644 index 0000000..95d2c91 --- /dev/null +++ b/tests/commonmark/294-Backslash_escapes.html @@ -0,0 +1,2 @@ +
\[\]
+
\ No newline at end of file diff --git a/tests/commonmark/294-Backslash_escapes.md b/tests/commonmark/294-Backslash_escapes.md new file mode 100644 index 0000000..3d80f66 --- /dev/null +++ b/tests/commonmark/294-Backslash_escapes.md @@ -0,0 +1,3 @@ +~~~ +\[\] +~~~ \ No newline at end of file diff --git a/tests/commonmark/304-Entity_and_numeric_character_references.html b/tests/commonmark/304-Entity_and_numeric_character_references.html new file mode 100644 index 0000000..21a82d0 --- /dev/null +++ b/tests/commonmark/304-Entity_and_numeric_character_references.html @@ -0,0 +1 @@ +

&copy

\ No newline at end of file diff --git a/tests/commonmark/304-Entity_and_numeric_character_references.md b/tests/commonmark/304-Entity_and_numeric_character_references.md new file mode 100644 index 0000000..9084749 --- /dev/null +++ b/tests/commonmark/304-Entity_and_numeric_character_references.md @@ -0,0 +1 @@ +© \ No newline at end of file diff --git a/tests/commonmark/31-Thematic_breaks.html b/tests/commonmark/31-Thematic_breaks.html new file mode 100644 index 0000000..9e3a130 --- /dev/null +++ b/tests/commonmark/31-Thematic_breaks.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/tests/commonmark/31-Thematic_breaks.md b/tests/commonmark/31-Thematic_breaks.md new file mode 100644 index 0000000..0b4c744 --- /dev/null +++ b/tests/commonmark/31-Thematic_breaks.md @@ -0,0 +1,2 @@ +- Foo +- * * * \ No newline at end of file diff --git a/tests/commonmark/310-Entity_and_numeric_character_references.html b/tests/commonmark/310-Entity_and_numeric_character_references.html new file mode 100644 index 0000000..c23643f --- /dev/null +++ b/tests/commonmark/310-Entity_and_numeric_character_references.html @@ -0,0 +1 @@ +

f&ouml;&ouml;

\ No newline at end of file diff --git a/tests/commonmark/310-Entity_and_numeric_character_references.md b/tests/commonmark/310-Entity_and_numeric_character_references.md new file mode 100644 index 0000000..13fcec7 --- /dev/null +++ b/tests/commonmark/310-Entity_and_numeric_character_references.md @@ -0,0 +1 @@ +`föö` \ No newline at end of file diff --git a/tests/commonmark/311-Entity_and_numeric_character_references.html b/tests/commonmark/311-Entity_and_numeric_character_references.html new file mode 100644 index 0000000..d279d07 --- /dev/null +++ b/tests/commonmark/311-Entity_and_numeric_character_references.html @@ -0,0 +1,2 @@ +
f&ouml;f&ouml;
+
\ No newline at end of file diff --git a/tests/commonmark/311-Entity_and_numeric_character_references.md b/tests/commonmark/311-Entity_and_numeric_character_references.md new file mode 100644 index 0000000..5cb6816 --- /dev/null +++ b/tests/commonmark/311-Entity_and_numeric_character_references.md @@ -0,0 +1 @@ + föfö \ No newline at end of file diff --git a/tests/commonmark/312-Code_spans.html b/tests/commonmark/312-Code_spans.html new file mode 100644 index 0000000..4a52275 --- /dev/null +++ b/tests/commonmark/312-Code_spans.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/312-Code_spans.md b/tests/commonmark/312-Code_spans.md new file mode 100644 index 0000000..41ebe5b --- /dev/null +++ b/tests/commonmark/312-Code_spans.md @@ -0,0 +1 @@ +`foo` \ No newline at end of file diff --git a/tests/commonmark/313-Code_spans.html b/tests/commonmark/313-Code_spans.html new file mode 100644 index 0000000..7de3a54 --- /dev/null +++ b/tests/commonmark/313-Code_spans.html @@ -0,0 +1 @@ +

foo ` bar

\ No newline at end of file diff --git a/tests/commonmark/313-Code_spans.md b/tests/commonmark/313-Code_spans.md new file mode 100644 index 0000000..d2e04be --- /dev/null +++ b/tests/commonmark/313-Code_spans.md @@ -0,0 +1 @@ +`` foo ` bar `` \ No newline at end of file diff --git a/tests/commonmark/314-Code_spans.html b/tests/commonmark/314-Code_spans.html new file mode 100644 index 0000000..c0d6552 --- /dev/null +++ b/tests/commonmark/314-Code_spans.html @@ -0,0 +1 @@ +

``

\ No newline at end of file diff --git a/tests/commonmark/314-Code_spans.md b/tests/commonmark/314-Code_spans.md new file mode 100644 index 0000000..0a17ea7 --- /dev/null +++ b/tests/commonmark/314-Code_spans.md @@ -0,0 +1 @@ +` `` ` \ No newline at end of file diff --git a/tests/commonmark/315-Code_spans.html b/tests/commonmark/315-Code_spans.html new file mode 100644 index 0000000..4a52275 --- /dev/null +++ b/tests/commonmark/315-Code_spans.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/315-Code_spans.md b/tests/commonmark/315-Code_spans.md new file mode 100644 index 0000000..c272abf --- /dev/null +++ b/tests/commonmark/315-Code_spans.md @@ -0,0 +1,3 @@ +`` +foo +`` \ No newline at end of file diff --git a/tests/commonmark/317-Code_spans.html b/tests/commonmark/317-Code_spans.html new file mode 100644 index 0000000..5f50e5e --- /dev/null +++ b/tests/commonmark/317-Code_spans.html @@ -0,0 +1 @@ +

a  b

\ No newline at end of file diff --git a/tests/commonmark/317-Code_spans.md b/tests/commonmark/317-Code_spans.md new file mode 100644 index 0000000..27bdfd9 --- /dev/null +++ b/tests/commonmark/317-Code_spans.md @@ -0,0 +1 @@ +`a  b` \ No newline at end of file diff --git a/tests/commonmark/318-Code_spans.html b/tests/commonmark/318-Code_spans.html new file mode 100644 index 0000000..80165d5 --- /dev/null +++ b/tests/commonmark/318-Code_spans.html @@ -0,0 +1 @@ +

foo `` bar

\ No newline at end of file diff --git a/tests/commonmark/318-Code_spans.md b/tests/commonmark/318-Code_spans.md new file mode 100644 index 0000000..a10c2d9 --- /dev/null +++ b/tests/commonmark/318-Code_spans.md @@ -0,0 +1 @@ +`foo `` bar` \ No newline at end of file diff --git a/tests/commonmark/319-Code_spans.html b/tests/commonmark/319-Code_spans.html new file mode 100644 index 0000000..ee95030 --- /dev/null +++ b/tests/commonmark/319-Code_spans.html @@ -0,0 +1 @@ +

foo\bar`

\ No newline at end of file diff --git a/tests/commonmark/319-Code_spans.md b/tests/commonmark/319-Code_spans.md new file mode 100644 index 0000000..71ad028 --- /dev/null +++ b/tests/commonmark/319-Code_spans.md @@ -0,0 +1 @@ +`foo\`bar` \ No newline at end of file diff --git a/tests/commonmark/32-ATX_headings.html b/tests/commonmark/32-ATX_headings.html new file mode 100644 index 0000000..ac8d579 --- /dev/null +++ b/tests/commonmark/32-ATX_headings.html @@ -0,0 +1,6 @@ +

foo

+

foo

+

foo

+

foo

+
foo
+
foo
\ No newline at end of file diff --git a/tests/commonmark/32-ATX_headings.md b/tests/commonmark/32-ATX_headings.md new file mode 100644 index 0000000..ed7eaa2 --- /dev/null +++ b/tests/commonmark/32-ATX_headings.md @@ -0,0 +1,6 @@ +# foo +## foo +### foo +#### foo +##### foo +###### foo \ No newline at end of file diff --git a/tests/commonmark/323-Code_spans.html b/tests/commonmark/323-Code_spans.html new file mode 100644 index 0000000..beba53a --- /dev/null +++ b/tests/commonmark/323-Code_spans.html @@ -0,0 +1 @@ +

`

\ No newline at end of file diff --git a/tests/commonmark/323-Code_spans.md b/tests/commonmark/323-Code_spans.md new file mode 100644 index 0000000..fb793aa --- /dev/null +++ b/tests/commonmark/323-Code_spans.md @@ -0,0 +1 @@ +` \ No newline at end of file diff --git a/tests/commonmark/324-Code_spans.html b/tests/commonmark/324-Code_spans.html new file mode 100644 index 0000000..56d6c79 --- /dev/null +++ b/tests/commonmark/324-Code_spans.html @@ -0,0 +1 @@ +

<http://foo.bar.baz>`

\ No newline at end of file diff --git a/tests/commonmark/324-Code_spans.md b/tests/commonmark/324-Code_spans.md new file mode 100644 index 0000000..8f1db09 --- /dev/null +++ b/tests/commonmark/324-Code_spans.md @@ -0,0 +1 @@ +`` \ No newline at end of file diff --git a/tests/commonmark/327-Code_spans.html b/tests/commonmark/327-Code_spans.html new file mode 100644 index 0000000..a291b61 --- /dev/null +++ b/tests/commonmark/327-Code_spans.html @@ -0,0 +1 @@ +

`foo

\ No newline at end of file diff --git a/tests/commonmark/327-Code_spans.md b/tests/commonmark/327-Code_spans.md new file mode 100644 index 0000000..8814874 --- /dev/null +++ b/tests/commonmark/327-Code_spans.md @@ -0,0 +1 @@ +`foo \ No newline at end of file diff --git a/tests/commonmark/328-Emphasis_and_strong_emphasis.html b/tests/commonmark/328-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2742cdd --- /dev/null +++ b/tests/commonmark/328-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/328-Emphasis_and_strong_emphasis.md b/tests/commonmark/328-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..5945e35 --- /dev/null +++ b/tests/commonmark/328-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo bar* \ No newline at end of file diff --git a/tests/commonmark/33-ATX_headings.html b/tests/commonmark/33-ATX_headings.html new file mode 100644 index 0000000..7216fdd --- /dev/null +++ b/tests/commonmark/33-ATX_headings.html @@ -0,0 +1 @@ +

####### foo

\ No newline at end of file diff --git a/tests/commonmark/33-ATX_headings.md b/tests/commonmark/33-ATX_headings.md new file mode 100644 index 0000000..6955be5 --- /dev/null +++ b/tests/commonmark/33-ATX_headings.md @@ -0,0 +1 @@ +####### foo \ No newline at end of file diff --git a/tests/commonmark/332-Emphasis_and_strong_emphasis.html b/tests/commonmark/332-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..82abf74 --- /dev/null +++ b/tests/commonmark/332-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foobar

\ No newline at end of file diff --git a/tests/commonmark/332-Emphasis_and_strong_emphasis.md b/tests/commonmark/332-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..fbef473 --- /dev/null +++ b/tests/commonmark/332-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo*bar* \ No newline at end of file diff --git a/tests/commonmark/333-Emphasis_and_strong_emphasis.html b/tests/commonmark/333-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..618306a --- /dev/null +++ b/tests/commonmark/333-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

5678

\ No newline at end of file diff --git a/tests/commonmark/333-Emphasis_and_strong_emphasis.md b/tests/commonmark/333-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..552d76a --- /dev/null +++ b/tests/commonmark/333-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +5*6*78 \ No newline at end of file diff --git a/tests/commonmark/334-Emphasis_and_strong_emphasis.html b/tests/commonmark/334-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2742cdd --- /dev/null +++ b/tests/commonmark/334-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/334-Emphasis_and_strong_emphasis.md b/tests/commonmark/334-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..0c87e70 --- /dev/null +++ b/tests/commonmark/334-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_foo bar_ \ No newline at end of file diff --git a/tests/commonmark/338-Emphasis_and_strong_emphasis.html b/tests/commonmark/338-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..674137d --- /dev/null +++ b/tests/commonmark/338-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

5_6_78

\ No newline at end of file diff --git a/tests/commonmark/338-Emphasis_and_strong_emphasis.md b/tests/commonmark/338-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..53fbae2 --- /dev/null +++ b/tests/commonmark/338-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +5_6_78 \ No newline at end of file diff --git a/tests/commonmark/340-Emphasis_and_strong_emphasis.html b/tests/commonmark/340-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..b479d4b --- /dev/null +++ b/tests/commonmark/340-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

aa_"bb"_cc

\ No newline at end of file diff --git a/tests/commonmark/340-Emphasis_and_strong_emphasis.md b/tests/commonmark/340-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..6fad734 --- /dev/null +++ b/tests/commonmark/340-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +aa_"bb"_cc \ No newline at end of file diff --git a/tests/commonmark/341-Emphasis_and_strong_emphasis.html b/tests/commonmark/341-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..897d6a0 --- /dev/null +++ b/tests/commonmark/341-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo-(bar)

\ No newline at end of file diff --git a/tests/commonmark/341-Emphasis_and_strong_emphasis.md b/tests/commonmark/341-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..d0c1cb7 --- /dev/null +++ b/tests/commonmark/341-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo-_(bar)_ \ No newline at end of file diff --git a/tests/commonmark/342-Emphasis_and_strong_emphasis.html b/tests/commonmark/342-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..a1feba0 --- /dev/null +++ b/tests/commonmark/342-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

_foo*

\ No newline at end of file diff --git a/tests/commonmark/342-Emphasis_and_strong_emphasis.md b/tests/commonmark/342-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..824f8b3 --- /dev/null +++ b/tests/commonmark/342-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_foo* \ No newline at end of file diff --git a/tests/commonmark/347-Emphasis_and_strong_emphasis.html b/tests/commonmark/347-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..509ce6a --- /dev/null +++ b/tests/commonmark/347-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foobar

\ No newline at end of file diff --git a/tests/commonmark/347-Emphasis_and_strong_emphasis.md b/tests/commonmark/347-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..ec6f7b6 --- /dev/null +++ b/tests/commonmark/347-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo*bar \ No newline at end of file diff --git a/tests/commonmark/349-Emphasis_and_strong_emphasis.html b/tests/commonmark/349-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..de6be2d --- /dev/null +++ b/tests/commonmark/349-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

_(_foo)

\ No newline at end of file diff --git a/tests/commonmark/349-Emphasis_and_strong_emphasis.md b/tests/commonmark/349-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..e6655be --- /dev/null +++ b/tests/commonmark/349-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_(_foo) \ No newline at end of file diff --git a/tests/commonmark/35-ATX_headings.html b/tests/commonmark/35-ATX_headings.html new file mode 100644 index 0000000..4253ec5 --- /dev/null +++ b/tests/commonmark/35-ATX_headings.html @@ -0,0 +1 @@ +

## foo

\ No newline at end of file diff --git a/tests/commonmark/35-ATX_headings.md b/tests/commonmark/35-ATX_headings.md new file mode 100644 index 0000000..ac8c7e5 --- /dev/null +++ b/tests/commonmark/35-ATX_headings.md @@ -0,0 +1 @@ +\## foo \ No newline at end of file diff --git a/tests/commonmark/351-Emphasis_and_strong_emphasis.html b/tests/commonmark/351-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2c8ed96 --- /dev/null +++ b/tests/commonmark/351-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

_foo_bar

\ No newline at end of file diff --git a/tests/commonmark/351-Emphasis_and_strong_emphasis.md b/tests/commonmark/351-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..9a0199d --- /dev/null +++ b/tests/commonmark/351-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_foo_bar \ No newline at end of file diff --git a/tests/commonmark/352-Emphasis_and_strong_emphasis.html b/tests/commonmark/352-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2bb54e1 --- /dev/null +++ b/tests/commonmark/352-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

_пристаням_стремятся

\ No newline at end of file diff --git a/tests/commonmark/352-Emphasis_and_strong_emphasis.md b/tests/commonmark/352-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..d9a73a2 --- /dev/null +++ b/tests/commonmark/352-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_пристаням_стремятся \ No newline at end of file diff --git a/tests/commonmark/354-Emphasis_and_strong_emphasis.html b/tests/commonmark/354-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..6405255 --- /dev/null +++ b/tests/commonmark/354-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

(bar).

\ No newline at end of file diff --git a/tests/commonmark/354-Emphasis_and_strong_emphasis.md b/tests/commonmark/354-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..83b5001 --- /dev/null +++ b/tests/commonmark/354-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_(bar)_. \ No newline at end of file diff --git a/tests/commonmark/355-Emphasis_and_strong_emphasis.html b/tests/commonmark/355-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..88ad35a --- /dev/null +++ b/tests/commonmark/355-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/355-Emphasis_and_strong_emphasis.md b/tests/commonmark/355-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..739a274 --- /dev/null +++ b/tests/commonmark/355-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo bar** \ No newline at end of file diff --git a/tests/commonmark/358-Emphasis_and_strong_emphasis.html b/tests/commonmark/358-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..718c7dc --- /dev/null +++ b/tests/commonmark/358-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foobar

\ No newline at end of file diff --git a/tests/commonmark/358-Emphasis_and_strong_emphasis.md b/tests/commonmark/358-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..a84b8a3 --- /dev/null +++ b/tests/commonmark/358-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo**bar** \ No newline at end of file diff --git a/tests/commonmark/359-Emphasis_and_strong_emphasis.html b/tests/commonmark/359-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..88ad35a --- /dev/null +++ b/tests/commonmark/359-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/359-Emphasis_and_strong_emphasis.md b/tests/commonmark/359-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..caf90ff --- /dev/null +++ b/tests/commonmark/359-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +__foo bar__ \ No newline at end of file diff --git a/tests/commonmark/36-ATX_headings.html b/tests/commonmark/36-ATX_headings.html new file mode 100644 index 0000000..20dffef --- /dev/null +++ b/tests/commonmark/36-ATX_headings.html @@ -0,0 +1 @@ +

foo bar *baz*

\ No newline at end of file diff --git a/tests/commonmark/36-ATX_headings.md b/tests/commonmark/36-ATX_headings.md new file mode 100644 index 0000000..47d20bc --- /dev/null +++ b/tests/commonmark/36-ATX_headings.md @@ -0,0 +1 @@ +# foo *bar* \*baz\* \ No newline at end of file diff --git a/tests/commonmark/367-Emphasis_and_strong_emphasis.html b/tests/commonmark/367-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..caff373 --- /dev/null +++ b/tests/commonmark/367-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo-(bar)

\ No newline at end of file diff --git a/tests/commonmark/367-Emphasis_and_strong_emphasis.md b/tests/commonmark/367-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..6ac11ad --- /dev/null +++ b/tests/commonmark/367-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo-__(bar)__ \ No newline at end of file diff --git a/tests/commonmark/37-ATX_headings.html b/tests/commonmark/37-ATX_headings.html new file mode 100644 index 0000000..bb17f9b --- /dev/null +++ b/tests/commonmark/37-ATX_headings.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/37-ATX_headings.md b/tests/commonmark/37-ATX_headings.md new file mode 100644 index 0000000..a7a04c4 --- /dev/null +++ b/tests/commonmark/37-ATX_headings.md @@ -0,0 +1 @@ +# foo \ No newline at end of file diff --git a/tests/commonmark/370-Emphasis_and_strong_emphasis.html b/tests/commonmark/370-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..303a42a --- /dev/null +++ b/tests/commonmark/370-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

(foo)

\ No newline at end of file diff --git a/tests/commonmark/370-Emphasis_and_strong_emphasis.md b/tests/commonmark/370-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..f256d4c --- /dev/null +++ b/tests/commonmark/370-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*(**foo**)* \ No newline at end of file diff --git a/tests/commonmark/371-Emphasis_and_strong_emphasis.html b/tests/commonmark/371-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..dba279e --- /dev/null +++ b/tests/commonmark/371-Emphasis_and_strong_emphasis.html @@ -0,0 +1,2 @@ +

Gomphocarpus (Gomphocarpus physocarpus, syn. +Asclepias physocarpa)

\ No newline at end of file diff --git a/tests/commonmark/371-Emphasis_and_strong_emphasis.md b/tests/commonmark/371-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..c529ae7 --- /dev/null +++ b/tests/commonmark/371-Emphasis_and_strong_emphasis.md @@ -0,0 +1,2 @@ +**Gomphocarpus (*Gomphocarpus physocarpus*, syn. +*Asclepias physocarpa*)** \ No newline at end of file diff --git a/tests/commonmark/372-Emphasis_and_strong_emphasis.html b/tests/commonmark/372-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..b01c570 --- /dev/null +++ b/tests/commonmark/372-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo "bar" foo

\ No newline at end of file diff --git a/tests/commonmark/372-Emphasis_and_strong_emphasis.md b/tests/commonmark/372-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..433f461 --- /dev/null +++ b/tests/commonmark/372-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo "*bar*" foo** \ No newline at end of file diff --git a/tests/commonmark/373-Emphasis_and_strong_emphasis.html b/tests/commonmark/373-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..809bc0f --- /dev/null +++ b/tests/commonmark/373-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foobar

\ No newline at end of file diff --git a/tests/commonmark/373-Emphasis_and_strong_emphasis.md b/tests/commonmark/373-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..d3cd1ac --- /dev/null +++ b/tests/commonmark/373-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo**bar \ No newline at end of file diff --git a/tests/commonmark/376-Emphasis_and_strong_emphasis.html b/tests/commonmark/376-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..303a42a --- /dev/null +++ b/tests/commonmark/376-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

(foo)

\ No newline at end of file diff --git a/tests/commonmark/376-Emphasis_and_strong_emphasis.md b/tests/commonmark/376-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..42e389a --- /dev/null +++ b/tests/commonmark/376-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_(__foo__)_ \ No newline at end of file diff --git a/tests/commonmark/38-ATX_headings.html b/tests/commonmark/38-ATX_headings.html new file mode 100644 index 0000000..73ad5b7 --- /dev/null +++ b/tests/commonmark/38-ATX_headings.html @@ -0,0 +1,3 @@ +

foo

+

foo

+

foo

\ No newline at end of file diff --git a/tests/commonmark/38-ATX_headings.md b/tests/commonmark/38-ATX_headings.md new file mode 100644 index 0000000..556385c --- /dev/null +++ b/tests/commonmark/38-ATX_headings.md @@ -0,0 +1,3 @@ + ### foo + ## foo + # foo \ No newline at end of file diff --git a/tests/commonmark/380-Emphasis_and_strong_emphasis.html b/tests/commonmark/380-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..3bd2221 --- /dev/null +++ b/tests/commonmark/380-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

(bar).

\ No newline at end of file diff --git a/tests/commonmark/380-Emphasis_and_strong_emphasis.md b/tests/commonmark/380-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..2db9b37 --- /dev/null +++ b/tests/commonmark/380-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +__(bar)__. \ No newline at end of file diff --git a/tests/commonmark/381-Emphasis_and_strong_emphasis.html b/tests/commonmark/381-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..1ff010c --- /dev/null +++ b/tests/commonmark/381-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/381-Emphasis_and_strong_emphasis.md b/tests/commonmark/381-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..c21bf16 --- /dev/null +++ b/tests/commonmark/381-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo [bar](/url)* \ No newline at end of file diff --git a/tests/commonmark/382-Emphasis_and_strong_emphasis.html b/tests/commonmark/382-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..7689ec0 --- /dev/null +++ b/tests/commonmark/382-Emphasis_and_strong_emphasis.html @@ -0,0 +1,2 @@ +

foo +bar

\ No newline at end of file diff --git a/tests/commonmark/382-Emphasis_and_strong_emphasis.md b/tests/commonmark/382-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..b022a72 --- /dev/null +++ b/tests/commonmark/382-Emphasis_and_strong_emphasis.md @@ -0,0 +1,2 @@ +*foo +bar* \ No newline at end of file diff --git a/tests/commonmark/383-Emphasis_and_strong_emphasis.html b/tests/commonmark/383-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..0b47893 --- /dev/null +++ b/tests/commonmark/383-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar baz

\ No newline at end of file diff --git a/tests/commonmark/383-Emphasis_and_strong_emphasis.md b/tests/commonmark/383-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..16e9273 --- /dev/null +++ b/tests/commonmark/383-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_foo __bar__ baz_ \ No newline at end of file diff --git a/tests/commonmark/387-Emphasis_and_strong_emphasis.html b/tests/commonmark/387-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..0b47893 --- /dev/null +++ b/tests/commonmark/387-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar baz

\ No newline at end of file diff --git a/tests/commonmark/387-Emphasis_and_strong_emphasis.md b/tests/commonmark/387-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..78193e4 --- /dev/null +++ b/tests/commonmark/387-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo **bar** baz* \ No newline at end of file diff --git a/tests/commonmark/388-Emphasis_and_strong_emphasis.html b/tests/commonmark/388-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..98aa6a9 --- /dev/null +++ b/tests/commonmark/388-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foobarbaz

\ No newline at end of file diff --git a/tests/commonmark/388-Emphasis_and_strong_emphasis.md b/tests/commonmark/388-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..b7fa051 --- /dev/null +++ b/tests/commonmark/388-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo**bar**baz* \ No newline at end of file diff --git a/tests/commonmark/389-Emphasis_and_strong_emphasis.html b/tests/commonmark/389-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..164c9f5 --- /dev/null +++ b/tests/commonmark/389-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/389-Emphasis_and_strong_emphasis.md b/tests/commonmark/389-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..5cc3a68 --- /dev/null +++ b/tests/commonmark/389-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +***foo** bar* \ No newline at end of file diff --git a/tests/commonmark/39-ATX_headings.html b/tests/commonmark/39-ATX_headings.html new file mode 100644 index 0000000..cc8de9d --- /dev/null +++ b/tests/commonmark/39-ATX_headings.html @@ -0,0 +1,2 @@ +
# foo
+
\ No newline at end of file diff --git a/tests/commonmark/39-ATX_headings.md b/tests/commonmark/39-ATX_headings.md new file mode 100644 index 0000000..dc6f2c9 --- /dev/null +++ b/tests/commonmark/39-ATX_headings.md @@ -0,0 +1 @@ + # foo \ No newline at end of file diff --git a/tests/commonmark/390-Emphasis_and_strong_emphasis.html b/tests/commonmark/390-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..144f02f --- /dev/null +++ b/tests/commonmark/390-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/390-Emphasis_and_strong_emphasis.md b/tests/commonmark/390-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..b06a7e3 --- /dev/null +++ b/tests/commonmark/390-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo **bar*** \ No newline at end of file diff --git a/tests/commonmark/391-Emphasis_and_strong_emphasis.html b/tests/commonmark/391-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..1791723 --- /dev/null +++ b/tests/commonmark/391-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foobar

\ No newline at end of file diff --git a/tests/commonmark/391-Emphasis_and_strong_emphasis.md b/tests/commonmark/391-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..ebc4ea2 --- /dev/null +++ b/tests/commonmark/391-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo**bar*** \ No newline at end of file diff --git a/tests/commonmark/394-Emphasis_and_strong_emphasis.html b/tests/commonmark/394-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..166a610 --- /dev/null +++ b/tests/commonmark/394-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

** is not an empty emphasis

\ No newline at end of file diff --git a/tests/commonmark/394-Emphasis_and_strong_emphasis.md b/tests/commonmark/394-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..037cdc7 --- /dev/null +++ b/tests/commonmark/394-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +** is not an empty emphasis \ No newline at end of file diff --git a/tests/commonmark/395-Emphasis_and_strong_emphasis.html b/tests/commonmark/395-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..e3df69e --- /dev/null +++ b/tests/commonmark/395-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

**** is not an empty strong emphasis

\ No newline at end of file diff --git a/tests/commonmark/395-Emphasis_and_strong_emphasis.md b/tests/commonmark/395-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..be54f61 --- /dev/null +++ b/tests/commonmark/395-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**** is not an empty strong emphasis \ No newline at end of file diff --git a/tests/commonmark/396-Emphasis_and_strong_emphasis.html b/tests/commonmark/396-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2125508 --- /dev/null +++ b/tests/commonmark/396-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/396-Emphasis_and_strong_emphasis.md b/tests/commonmark/396-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..35bb4eb --- /dev/null +++ b/tests/commonmark/396-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo [bar](/url)** \ No newline at end of file diff --git a/tests/commonmark/397-Emphasis_and_strong_emphasis.html b/tests/commonmark/397-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..5cf4df2 --- /dev/null +++ b/tests/commonmark/397-Emphasis_and_strong_emphasis.html @@ -0,0 +1,2 @@ +

foo +bar

\ No newline at end of file diff --git a/tests/commonmark/397-Emphasis_and_strong_emphasis.md b/tests/commonmark/397-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..01b4e42 --- /dev/null +++ b/tests/commonmark/397-Emphasis_and_strong_emphasis.md @@ -0,0 +1,2 @@ +**foo +bar** \ No newline at end of file diff --git a/tests/commonmark/398-Emphasis_and_strong_emphasis.html b/tests/commonmark/398-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2492893 --- /dev/null +++ b/tests/commonmark/398-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar baz

\ No newline at end of file diff --git a/tests/commonmark/398-Emphasis_and_strong_emphasis.md b/tests/commonmark/398-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..43ea6af --- /dev/null +++ b/tests/commonmark/398-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +__foo _bar_ baz__ \ No newline at end of file diff --git a/tests/commonmark/4-Tabs.html b/tests/commonmark/4-Tabs.html new file mode 100644 index 0000000..c117426 --- /dev/null +++ b/tests/commonmark/4-Tabs.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/tests/commonmark/4-Tabs.md b/tests/commonmark/4-Tabs.md new file mode 100644 index 0000000..4896e51 --- /dev/null +++ b/tests/commonmark/4-Tabs.md @@ -0,0 +1,3 @@ + - foo + + bar \ No newline at end of file diff --git a/tests/commonmark/402-Emphasis_and_strong_emphasis.html b/tests/commonmark/402-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2492893 --- /dev/null +++ b/tests/commonmark/402-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar baz

\ No newline at end of file diff --git a/tests/commonmark/402-Emphasis_and_strong_emphasis.md b/tests/commonmark/402-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..882e028 --- /dev/null +++ b/tests/commonmark/402-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo *bar* baz** \ No newline at end of file diff --git a/tests/commonmark/403-Emphasis_and_strong_emphasis.html b/tests/commonmark/403-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2486715 --- /dev/null +++ b/tests/commonmark/403-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foobarbaz

\ No newline at end of file diff --git a/tests/commonmark/403-Emphasis_and_strong_emphasis.md b/tests/commonmark/403-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..afed67f --- /dev/null +++ b/tests/commonmark/403-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo*bar*baz** \ No newline at end of file diff --git a/tests/commonmark/404-Emphasis_and_strong_emphasis.html b/tests/commonmark/404-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..f622efc --- /dev/null +++ b/tests/commonmark/404-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/404-Emphasis_and_strong_emphasis.md b/tests/commonmark/404-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..8b84f99 --- /dev/null +++ b/tests/commonmark/404-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +***foo* bar** \ No newline at end of file diff --git a/tests/commonmark/405-Emphasis_and_strong_emphasis.html b/tests/commonmark/405-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..14558ef --- /dev/null +++ b/tests/commonmark/405-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/405-Emphasis_and_strong_emphasis.md b/tests/commonmark/405-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..21e1d4a --- /dev/null +++ b/tests/commonmark/405-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo *bar*** \ No newline at end of file diff --git a/tests/commonmark/406-Emphasis_and_strong_emphasis.html b/tests/commonmark/406-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..0bda6dc --- /dev/null +++ b/tests/commonmark/406-Emphasis_and_strong_emphasis.html @@ -0,0 +1,2 @@ +

foo bar baz +bim bop

\ No newline at end of file diff --git a/tests/commonmark/406-Emphasis_and_strong_emphasis.md b/tests/commonmark/406-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..b20e356 --- /dev/null +++ b/tests/commonmark/406-Emphasis_and_strong_emphasis.md @@ -0,0 +1,2 @@ +**foo *bar **baz** +bim* bop** \ No newline at end of file diff --git a/tests/commonmark/407-Emphasis_and_strong_emphasis.html b/tests/commonmark/407-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..66fd6ac --- /dev/null +++ b/tests/commonmark/407-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/407-Emphasis_and_strong_emphasis.md b/tests/commonmark/407-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..6f30578 --- /dev/null +++ b/tests/commonmark/407-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo [*bar*](/url)** \ No newline at end of file diff --git a/tests/commonmark/408-Emphasis_and_strong_emphasis.html b/tests/commonmark/408-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..74e3890 --- /dev/null +++ b/tests/commonmark/408-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

__ is not an empty emphasis

\ No newline at end of file diff --git a/tests/commonmark/408-Emphasis_and_strong_emphasis.md b/tests/commonmark/408-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..36321c8 --- /dev/null +++ b/tests/commonmark/408-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +__ is not an empty emphasis \ No newline at end of file diff --git a/tests/commonmark/409-Emphasis_and_strong_emphasis.html b/tests/commonmark/409-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..f16037e --- /dev/null +++ b/tests/commonmark/409-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

____ is not an empty strong emphasis

\ No newline at end of file diff --git a/tests/commonmark/409-Emphasis_and_strong_emphasis.md b/tests/commonmark/409-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..bfb3a42 --- /dev/null +++ b/tests/commonmark/409-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +____ is not an empty strong emphasis \ No newline at end of file diff --git a/tests/commonmark/41-ATX_headings.html b/tests/commonmark/41-ATX_headings.html new file mode 100644 index 0000000..1345004 --- /dev/null +++ b/tests/commonmark/41-ATX_headings.html @@ -0,0 +1,2 @@ +

foo

+

bar

\ No newline at end of file diff --git a/tests/commonmark/41-ATX_headings.md b/tests/commonmark/41-ATX_headings.md new file mode 100644 index 0000000..86c81f1 --- /dev/null +++ b/tests/commonmark/41-ATX_headings.md @@ -0,0 +1,2 @@ +## foo ## + ### bar ### \ No newline at end of file diff --git a/tests/commonmark/410-Emphasis_and_strong_emphasis.html b/tests/commonmark/410-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..9d72201 --- /dev/null +++ b/tests/commonmark/410-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo ***

\ No newline at end of file diff --git a/tests/commonmark/410-Emphasis_and_strong_emphasis.md b/tests/commonmark/410-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..0de26c3 --- /dev/null +++ b/tests/commonmark/410-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo *** \ No newline at end of file diff --git a/tests/commonmark/411-Emphasis_and_strong_emphasis.html b/tests/commonmark/411-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..d27525d --- /dev/null +++ b/tests/commonmark/411-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo *

\ No newline at end of file diff --git a/tests/commonmark/411-Emphasis_and_strong_emphasis.md b/tests/commonmark/411-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..d8b2d7e --- /dev/null +++ b/tests/commonmark/411-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo *\** \ No newline at end of file diff --git a/tests/commonmark/412-Emphasis_and_strong_emphasis.html b/tests/commonmark/412-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..29ed14b --- /dev/null +++ b/tests/commonmark/412-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo _

\ No newline at end of file diff --git a/tests/commonmark/412-Emphasis_and_strong_emphasis.md b/tests/commonmark/412-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..3e2f071 --- /dev/null +++ b/tests/commonmark/412-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo *_* \ No newline at end of file diff --git a/tests/commonmark/413-Emphasis_and_strong_emphasis.html b/tests/commonmark/413-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..06906bd --- /dev/null +++ b/tests/commonmark/413-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo *****

\ No newline at end of file diff --git a/tests/commonmark/413-Emphasis_and_strong_emphasis.md b/tests/commonmark/413-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..13301de --- /dev/null +++ b/tests/commonmark/413-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo ***** \ No newline at end of file diff --git a/tests/commonmark/414-Emphasis_and_strong_emphasis.html b/tests/commonmark/414-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..b6d7ef7 --- /dev/null +++ b/tests/commonmark/414-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo *

\ No newline at end of file diff --git a/tests/commonmark/414-Emphasis_and_strong_emphasis.md b/tests/commonmark/414-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..3b7ef89 --- /dev/null +++ b/tests/commonmark/414-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo **\*** \ No newline at end of file diff --git a/tests/commonmark/415-Emphasis_and_strong_emphasis.html b/tests/commonmark/415-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..ac76fd7 --- /dev/null +++ b/tests/commonmark/415-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo _

\ No newline at end of file diff --git a/tests/commonmark/415-Emphasis_and_strong_emphasis.md b/tests/commonmark/415-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..d3ff1ba --- /dev/null +++ b/tests/commonmark/415-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo **_** \ No newline at end of file diff --git a/tests/commonmark/416-Emphasis_and_strong_emphasis.html b/tests/commonmark/416-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..8e333f4 --- /dev/null +++ b/tests/commonmark/416-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

*foo

\ No newline at end of file diff --git a/tests/commonmark/416-Emphasis_and_strong_emphasis.md b/tests/commonmark/416-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..e1abe6f --- /dev/null +++ b/tests/commonmark/416-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo* \ No newline at end of file diff --git a/tests/commonmark/418-Emphasis_and_strong_emphasis.html b/tests/commonmark/418-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..2e8d732 --- /dev/null +++ b/tests/commonmark/418-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

*foo

\ No newline at end of file diff --git a/tests/commonmark/418-Emphasis_and_strong_emphasis.md b/tests/commonmark/418-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..541636a --- /dev/null +++ b/tests/commonmark/418-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +***foo** \ No newline at end of file diff --git a/tests/commonmark/419-Emphasis_and_strong_emphasis.html b/tests/commonmark/419-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..d40de87 --- /dev/null +++ b/tests/commonmark/419-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

***foo

\ No newline at end of file diff --git a/tests/commonmark/419-Emphasis_and_strong_emphasis.md b/tests/commonmark/419-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..2c69310 --- /dev/null +++ b/tests/commonmark/419-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +****foo* \ No newline at end of file diff --git a/tests/commonmark/42-ATX_headings.html b/tests/commonmark/42-ATX_headings.html new file mode 100644 index 0000000..ec59a49 --- /dev/null +++ b/tests/commonmark/42-ATX_headings.html @@ -0,0 +1,2 @@ +

foo

+
foo
\ No newline at end of file diff --git a/tests/commonmark/42-ATX_headings.md b/tests/commonmark/42-ATX_headings.md new file mode 100644 index 0000000..676fd9e --- /dev/null +++ b/tests/commonmark/42-ATX_headings.md @@ -0,0 +1,2 @@ +# foo ################################## +##### foo ## \ No newline at end of file diff --git a/tests/commonmark/422-Emphasis_and_strong_emphasis.html b/tests/commonmark/422-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..a00548a --- /dev/null +++ b/tests/commonmark/422-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo ___

\ No newline at end of file diff --git a/tests/commonmark/422-Emphasis_and_strong_emphasis.md b/tests/commonmark/422-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..0db9269 --- /dev/null +++ b/tests/commonmark/422-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo ___ \ No newline at end of file diff --git a/tests/commonmark/423-Emphasis_and_strong_emphasis.html b/tests/commonmark/423-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..29ed14b --- /dev/null +++ b/tests/commonmark/423-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo _

\ No newline at end of file diff --git a/tests/commonmark/423-Emphasis_and_strong_emphasis.md b/tests/commonmark/423-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..2e02dfa --- /dev/null +++ b/tests/commonmark/423-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo _\__ \ No newline at end of file diff --git a/tests/commonmark/424-Emphasis_and_strong_emphasis.html b/tests/commonmark/424-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..d27525d --- /dev/null +++ b/tests/commonmark/424-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo *

\ No newline at end of file diff --git a/tests/commonmark/424-Emphasis_and_strong_emphasis.md b/tests/commonmark/424-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..ecc970b --- /dev/null +++ b/tests/commonmark/424-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo _*_ \ No newline at end of file diff --git a/tests/commonmark/425-Emphasis_and_strong_emphasis.html b/tests/commonmark/425-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..12b1a91 --- /dev/null +++ b/tests/commonmark/425-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo _____

\ No newline at end of file diff --git a/tests/commonmark/425-Emphasis_and_strong_emphasis.md b/tests/commonmark/425-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..0ce0328 --- /dev/null +++ b/tests/commonmark/425-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo _____ \ No newline at end of file diff --git a/tests/commonmark/426-Emphasis_and_strong_emphasis.html b/tests/commonmark/426-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..ac76fd7 --- /dev/null +++ b/tests/commonmark/426-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo _

\ No newline at end of file diff --git a/tests/commonmark/426-Emphasis_and_strong_emphasis.md b/tests/commonmark/426-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..fcd64ad --- /dev/null +++ b/tests/commonmark/426-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo __\___ \ No newline at end of file diff --git a/tests/commonmark/427-Emphasis_and_strong_emphasis.html b/tests/commonmark/427-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..b6d7ef7 --- /dev/null +++ b/tests/commonmark/427-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo *

\ No newline at end of file diff --git a/tests/commonmark/427-Emphasis_and_strong_emphasis.md b/tests/commonmark/427-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..9f8cf1b --- /dev/null +++ b/tests/commonmark/427-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +foo __*__ \ No newline at end of file diff --git a/tests/commonmark/428-Emphasis_and_strong_emphasis.html b/tests/commonmark/428-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..af0c134 --- /dev/null +++ b/tests/commonmark/428-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

_foo

\ No newline at end of file diff --git a/tests/commonmark/428-Emphasis_and_strong_emphasis.md b/tests/commonmark/428-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..803d7d0 --- /dev/null +++ b/tests/commonmark/428-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +__foo_ \ No newline at end of file diff --git a/tests/commonmark/43-ATX_headings.html b/tests/commonmark/43-ATX_headings.html new file mode 100644 index 0000000..2349504 --- /dev/null +++ b/tests/commonmark/43-ATX_headings.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/43-ATX_headings.md b/tests/commonmark/43-ATX_headings.md new file mode 100644 index 0000000..e418133 --- /dev/null +++ b/tests/commonmark/43-ATX_headings.md @@ -0,0 +1 @@ +### foo ### \ No newline at end of file diff --git a/tests/commonmark/430-Emphasis_and_strong_emphasis.html b/tests/commonmark/430-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..abdb3c1 --- /dev/null +++ b/tests/commonmark/430-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

_foo

\ No newline at end of file diff --git a/tests/commonmark/430-Emphasis_and_strong_emphasis.md b/tests/commonmark/430-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..b89593a --- /dev/null +++ b/tests/commonmark/430-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +___foo__ \ No newline at end of file diff --git a/tests/commonmark/431-Emphasis_and_strong_emphasis.html b/tests/commonmark/431-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..e695550 --- /dev/null +++ b/tests/commonmark/431-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

___foo

\ No newline at end of file diff --git a/tests/commonmark/431-Emphasis_and_strong_emphasis.md b/tests/commonmark/431-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..17f86c3 --- /dev/null +++ b/tests/commonmark/431-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +____foo_ \ No newline at end of file diff --git a/tests/commonmark/434-Emphasis_and_strong_emphasis.html b/tests/commonmark/434-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..e1d6eed --- /dev/null +++ b/tests/commonmark/434-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/434-Emphasis_and_strong_emphasis.md b/tests/commonmark/434-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..bec0cb7 --- /dev/null +++ b/tests/commonmark/434-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +**foo** \ No newline at end of file diff --git a/tests/commonmark/435-Emphasis_and_strong_emphasis.html b/tests/commonmark/435-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..8b2f852 --- /dev/null +++ b/tests/commonmark/435-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/435-Emphasis_and_strong_emphasis.md b/tests/commonmark/435-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..655eafd --- /dev/null +++ b/tests/commonmark/435-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*_foo_* \ No newline at end of file diff --git a/tests/commonmark/436-Emphasis_and_strong_emphasis.html b/tests/commonmark/436-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..e1d6eed --- /dev/null +++ b/tests/commonmark/436-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/436-Emphasis_and_strong_emphasis.md b/tests/commonmark/436-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..a537e31 --- /dev/null +++ b/tests/commonmark/436-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +__foo__ \ No newline at end of file diff --git a/tests/commonmark/437-Emphasis_and_strong_emphasis.html b/tests/commonmark/437-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..8b2f852 --- /dev/null +++ b/tests/commonmark/437-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/437-Emphasis_and_strong_emphasis.md b/tests/commonmark/437-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..37d06a9 --- /dev/null +++ b/tests/commonmark/437-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_*foo*_ \ No newline at end of file diff --git a/tests/commonmark/438-Emphasis_and_strong_emphasis.html b/tests/commonmark/438-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..47f4408 --- /dev/null +++ b/tests/commonmark/438-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/438-Emphasis_and_strong_emphasis.md b/tests/commonmark/438-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..86341ef --- /dev/null +++ b/tests/commonmark/438-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +****foo**** \ No newline at end of file diff --git a/tests/commonmark/439-Emphasis_and_strong_emphasis.html b/tests/commonmark/439-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..47f4408 --- /dev/null +++ b/tests/commonmark/439-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/439-Emphasis_and_strong_emphasis.md b/tests/commonmark/439-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..b15ab5f --- /dev/null +++ b/tests/commonmark/439-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +____foo____ \ No newline at end of file diff --git a/tests/commonmark/44-ATX_headings.html b/tests/commonmark/44-ATX_headings.html new file mode 100644 index 0000000..46a72ff --- /dev/null +++ b/tests/commonmark/44-ATX_headings.html @@ -0,0 +1 @@ +

foo ### b

\ No newline at end of file diff --git a/tests/commonmark/44-ATX_headings.md b/tests/commonmark/44-ATX_headings.md new file mode 100644 index 0000000..41cc53c --- /dev/null +++ b/tests/commonmark/44-ATX_headings.md @@ -0,0 +1 @@ +### foo ### b \ No newline at end of file diff --git a/tests/commonmark/441-Emphasis_and_strong_emphasis.html b/tests/commonmark/441-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..1243c00 --- /dev/null +++ b/tests/commonmark/441-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/441-Emphasis_and_strong_emphasis.md b/tests/commonmark/441-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..33a7972 --- /dev/null +++ b/tests/commonmark/441-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +***foo*** \ No newline at end of file diff --git a/tests/commonmark/442-Emphasis_and_strong_emphasis.html b/tests/commonmark/442-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..8853308 --- /dev/null +++ b/tests/commonmark/442-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/442-Emphasis_and_strong_emphasis.md b/tests/commonmark/442-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..623075f --- /dev/null +++ b/tests/commonmark/442-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +_____foo_____ \ No newline at end of file diff --git a/tests/commonmark/443-Emphasis_and_strong_emphasis.html b/tests/commonmark/443-Emphasis_and_strong_emphasis.html new file mode 100644 index 0000000..9ecd0f7 --- /dev/null +++ b/tests/commonmark/443-Emphasis_and_strong_emphasis.html @@ -0,0 +1 @@ +

foo _bar baz_

\ No newline at end of file diff --git a/tests/commonmark/443-Emphasis_and_strong_emphasis.md b/tests/commonmark/443-Emphasis_and_strong_emphasis.md new file mode 100644 index 0000000..56ee1ee --- /dev/null +++ b/tests/commonmark/443-Emphasis_and_strong_emphasis.md @@ -0,0 +1 @@ +*foo _bar* baz_ \ No newline at end of file diff --git a/tests/commonmark/456-Links.html b/tests/commonmark/456-Links.html new file mode 100644 index 0000000..4183f3e --- /dev/null +++ b/tests/commonmark/456-Links.html @@ -0,0 +1 @@ +

link

\ No newline at end of file diff --git a/tests/commonmark/456-Links.md b/tests/commonmark/456-Links.md new file mode 100644 index 0000000..6623a16 --- /dev/null +++ b/tests/commonmark/456-Links.md @@ -0,0 +1 @@ +[link](/uri "title") \ No newline at end of file diff --git a/tests/commonmark/457-Links.html b/tests/commonmark/457-Links.html new file mode 100644 index 0000000..be35e69 --- /dev/null +++ b/tests/commonmark/457-Links.html @@ -0,0 +1 @@ +

link

\ No newline at end of file diff --git a/tests/commonmark/457-Links.md b/tests/commonmark/457-Links.md new file mode 100644 index 0000000..438423c --- /dev/null +++ b/tests/commonmark/457-Links.md @@ -0,0 +1 @@ +[link](/uri) \ No newline at end of file diff --git a/tests/commonmark/460-Links.html b/tests/commonmark/460-Links.html new file mode 100644 index 0000000..7bc00e3 --- /dev/null +++ b/tests/commonmark/460-Links.html @@ -0,0 +1 @@ +

[link](/my uri)

\ No newline at end of file diff --git a/tests/commonmark/460-Links.md b/tests/commonmark/460-Links.md new file mode 100644 index 0000000..6f44be6 --- /dev/null +++ b/tests/commonmark/460-Links.md @@ -0,0 +1 @@ +[link](/my uri) \ No newline at end of file diff --git a/tests/commonmark/461-Links.html b/tests/commonmark/461-Links.html new file mode 100644 index 0000000..84777c2 --- /dev/null +++ b/tests/commonmark/461-Links.html @@ -0,0 +1 @@ +

[link](</my uri>)

\ No newline at end of file diff --git a/tests/commonmark/461-Links.md b/tests/commonmark/461-Links.md new file mode 100644 index 0000000..be01ff5 --- /dev/null +++ b/tests/commonmark/461-Links.md @@ -0,0 +1 @@ +[link]() \ No newline at end of file diff --git a/tests/commonmark/465-Links.html b/tests/commonmark/465-Links.html new file mode 100644 index 0000000..9a4edcf --- /dev/null +++ b/tests/commonmark/465-Links.html @@ -0,0 +1 @@ +

link

\ No newline at end of file diff --git a/tests/commonmark/465-Links.md b/tests/commonmark/465-Links.md new file mode 100644 index 0000000..a99cb84 --- /dev/null +++ b/tests/commonmark/465-Links.md @@ -0,0 +1 @@ +[link]((foo)and(bar)) \ No newline at end of file diff --git a/tests/commonmark/47-ATX_headings.html b/tests/commonmark/47-ATX_headings.html new file mode 100644 index 0000000..0f3d389 --- /dev/null +++ b/tests/commonmark/47-ATX_headings.html @@ -0,0 +1,3 @@ +
+

foo

+
\ No newline at end of file diff --git a/tests/commonmark/47-ATX_headings.md b/tests/commonmark/47-ATX_headings.md new file mode 100644 index 0000000..c64530a --- /dev/null +++ b/tests/commonmark/47-ATX_headings.md @@ -0,0 +1,3 @@ +**** +## foo +**** \ No newline at end of file diff --git a/tests/commonmark/470-Links.html b/tests/commonmark/470-Links.html new file mode 100644 index 0000000..4a3cb66 --- /dev/null +++ b/tests/commonmark/470-Links.html @@ -0,0 +1,3 @@ +

link

+

link

+

link

\ No newline at end of file diff --git a/tests/commonmark/470-Links.md b/tests/commonmark/470-Links.md new file mode 100644 index 0000000..efea20f --- /dev/null +++ b/tests/commonmark/470-Links.md @@ -0,0 +1,5 @@ +[link](#fragment) + +[link](http://example.com#fragment) + +[link](http://example.com?foo=3#frag) \ No newline at end of file diff --git a/tests/commonmark/477-Links.html b/tests/commonmark/477-Links.html new file mode 100644 index 0000000..888d36c --- /dev/null +++ b/tests/commonmark/477-Links.html @@ -0,0 +1 @@ +

[link](/url "title "and" title")

\ No newline at end of file diff --git a/tests/commonmark/477-Links.md b/tests/commonmark/477-Links.md new file mode 100644 index 0000000..9566155 --- /dev/null +++ b/tests/commonmark/477-Links.md @@ -0,0 +1 @@ +[link](/url "title "and" title") \ No newline at end of file diff --git a/tests/commonmark/48-ATX_headings.html b/tests/commonmark/48-ATX_headings.html new file mode 100644 index 0000000..16f2400 --- /dev/null +++ b/tests/commonmark/48-ATX_headings.html @@ -0,0 +1,3 @@ +

Foo bar

+

baz

+

Bar foo

\ No newline at end of file diff --git a/tests/commonmark/48-ATX_headings.md b/tests/commonmark/48-ATX_headings.md new file mode 100644 index 0000000..ec02df4 --- /dev/null +++ b/tests/commonmark/48-ATX_headings.md @@ -0,0 +1,3 @@ +Foo bar +# baz +Bar foo \ No newline at end of file diff --git a/tests/commonmark/480-Links.html b/tests/commonmark/480-Links.html new file mode 100644 index 0000000..f2922d4 --- /dev/null +++ b/tests/commonmark/480-Links.html @@ -0,0 +1 @@ +

[link] (/uri)

\ No newline at end of file diff --git a/tests/commonmark/480-Links.md b/tests/commonmark/480-Links.md new file mode 100644 index 0000000..b4360a5 --- /dev/null +++ b/tests/commonmark/480-Links.md @@ -0,0 +1 @@ +[link] (/uri) \ No newline at end of file diff --git a/tests/commonmark/481-Links.html b/tests/commonmark/481-Links.html new file mode 100644 index 0000000..0554290 --- /dev/null +++ b/tests/commonmark/481-Links.html @@ -0,0 +1 @@ +

link [foo [bar]]

\ No newline at end of file diff --git a/tests/commonmark/481-Links.md b/tests/commonmark/481-Links.md new file mode 100644 index 0000000..ddbc0b8 --- /dev/null +++ b/tests/commonmark/481-Links.md @@ -0,0 +1 @@ +[link [foo [bar]]](/uri) \ No newline at end of file diff --git a/tests/commonmark/482-Links.html b/tests/commonmark/482-Links.html new file mode 100644 index 0000000..f571ea4 --- /dev/null +++ b/tests/commonmark/482-Links.html @@ -0,0 +1 @@ +

[link] bar](/uri)

\ No newline at end of file diff --git a/tests/commonmark/482-Links.md b/tests/commonmark/482-Links.md new file mode 100644 index 0000000..7d60028 --- /dev/null +++ b/tests/commonmark/482-Links.md @@ -0,0 +1 @@ +[link] bar](/uri) \ No newline at end of file diff --git a/tests/commonmark/483-Links.html b/tests/commonmark/483-Links.html new file mode 100644 index 0000000..1651774 --- /dev/null +++ b/tests/commonmark/483-Links.html @@ -0,0 +1 @@ +

[link bar

\ No newline at end of file diff --git a/tests/commonmark/483-Links.md b/tests/commonmark/483-Links.md new file mode 100644 index 0000000..e439362 --- /dev/null +++ b/tests/commonmark/483-Links.md @@ -0,0 +1 @@ +[link [bar](/uri) \ No newline at end of file diff --git a/tests/commonmark/485-Links.html b/tests/commonmark/485-Links.html new file mode 100644 index 0000000..3829fb0 --- /dev/null +++ b/tests/commonmark/485-Links.html @@ -0,0 +1 @@ +

link foo bar #

\ No newline at end of file diff --git a/tests/commonmark/485-Links.md b/tests/commonmark/485-Links.md new file mode 100644 index 0000000..bc08e1b --- /dev/null +++ b/tests/commonmark/485-Links.md @@ -0,0 +1 @@ +[link *foo **bar** `#`*](/uri) \ No newline at end of file diff --git a/tests/commonmark/486-Links.html b/tests/commonmark/486-Links.html new file mode 100644 index 0000000..17c6e98 --- /dev/null +++ b/tests/commonmark/486-Links.html @@ -0,0 +1 @@ +

moon

\ No newline at end of file diff --git a/tests/commonmark/486-Links.md b/tests/commonmark/486-Links.md new file mode 100644 index 0000000..3271f84 --- /dev/null +++ b/tests/commonmark/486-Links.md @@ -0,0 +1 @@ +[![moon](moon.jpg)](/uri) \ No newline at end of file diff --git a/tests/commonmark/491-Links.html b/tests/commonmark/491-Links.html new file mode 100644 index 0000000..a5c8055 --- /dev/null +++ b/tests/commonmark/491-Links.html @@ -0,0 +1 @@ +

foo *bar

\ No newline at end of file diff --git a/tests/commonmark/491-Links.md b/tests/commonmark/491-Links.md new file mode 100644 index 0000000..1f577f3 --- /dev/null +++ b/tests/commonmark/491-Links.md @@ -0,0 +1 @@ +[foo *bar](baz*) \ No newline at end of file diff --git a/tests/commonmark/492-Links.html b/tests/commonmark/492-Links.html new file mode 100644 index 0000000..7f5ce69 --- /dev/null +++ b/tests/commonmark/492-Links.html @@ -0,0 +1 @@ +

foo [bar baz]

\ No newline at end of file diff --git a/tests/commonmark/492-Links.md b/tests/commonmark/492-Links.md new file mode 100644 index 0000000..20b5610 --- /dev/null +++ b/tests/commonmark/492-Links.md @@ -0,0 +1 @@ +*foo [bar* baz] \ No newline at end of file diff --git a/tests/commonmark/496-Links.html b/tests/commonmark/496-Links.html new file mode 100644 index 0000000..de843ed --- /dev/null +++ b/tests/commonmark/496-Links.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/496-Links.md b/tests/commonmark/496-Links.md new file mode 100644 index 0000000..d6466f8 --- /dev/null +++ b/tests/commonmark/496-Links.md @@ -0,0 +1,3 @@ +[foo][bar] + +[bar]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/497-Links.html b/tests/commonmark/497-Links.html new file mode 100644 index 0000000..0554290 --- /dev/null +++ b/tests/commonmark/497-Links.html @@ -0,0 +1 @@ +

link [foo [bar]]

\ No newline at end of file diff --git a/tests/commonmark/497-Links.md b/tests/commonmark/497-Links.md new file mode 100644 index 0000000..d3f7233 --- /dev/null +++ b/tests/commonmark/497-Links.md @@ -0,0 +1,3 @@ +[link [foo [bar]]][ref] + +[ref]: /uri \ No newline at end of file diff --git a/tests/commonmark/499-Links.html b/tests/commonmark/499-Links.html new file mode 100644 index 0000000..3829fb0 --- /dev/null +++ b/tests/commonmark/499-Links.html @@ -0,0 +1 @@ +

link foo bar #

\ No newline at end of file diff --git a/tests/commonmark/499-Links.md b/tests/commonmark/499-Links.md new file mode 100644 index 0000000..1c0b5d9 --- /dev/null +++ b/tests/commonmark/499-Links.md @@ -0,0 +1,3 @@ +[link *foo **bar** `#`*][ref] + +[ref]: /uri \ No newline at end of file diff --git a/tests/commonmark/50-Setext_headings.html b/tests/commonmark/50-Setext_headings.html new file mode 100644 index 0000000..d9f8547 --- /dev/null +++ b/tests/commonmark/50-Setext_headings.html @@ -0,0 +1,2 @@ +

Foo bar

+

Foo bar

\ No newline at end of file diff --git a/tests/commonmark/50-Setext_headings.md b/tests/commonmark/50-Setext_headings.md new file mode 100644 index 0000000..84a2bc3 --- /dev/null +++ b/tests/commonmark/50-Setext_headings.md @@ -0,0 +1,5 @@ +Foo *bar* +========= + +Foo *bar* +--------- \ No newline at end of file diff --git a/tests/commonmark/500-Links.html b/tests/commonmark/500-Links.html new file mode 100644 index 0000000..17c6e98 --- /dev/null +++ b/tests/commonmark/500-Links.html @@ -0,0 +1 @@ +

moon

\ No newline at end of file diff --git a/tests/commonmark/500-Links.md b/tests/commonmark/500-Links.md new file mode 100644 index 0000000..3afa1a2 --- /dev/null +++ b/tests/commonmark/500-Links.md @@ -0,0 +1,3 @@ +[![moon](moon.jpg)][ref] + +[ref]: /uri \ No newline at end of file diff --git a/tests/commonmark/504-Links.html b/tests/commonmark/504-Links.html new file mode 100644 index 0000000..a06bc88 --- /dev/null +++ b/tests/commonmark/504-Links.html @@ -0,0 +1 @@ +

foo *bar

\ No newline at end of file diff --git a/tests/commonmark/504-Links.md b/tests/commonmark/504-Links.md new file mode 100644 index 0000000..332766d --- /dev/null +++ b/tests/commonmark/504-Links.md @@ -0,0 +1,3 @@ +[foo *bar][ref] + +[ref]: /uri \ No newline at end of file diff --git a/tests/commonmark/508-Links.html b/tests/commonmark/508-Links.html new file mode 100644 index 0000000..de843ed --- /dev/null +++ b/tests/commonmark/508-Links.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/508-Links.md b/tests/commonmark/508-Links.md new file mode 100644 index 0000000..9a2dcdf --- /dev/null +++ b/tests/commonmark/508-Links.md @@ -0,0 +1,3 @@ +[foo][BaR] + +[bar]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/51-Setext_headings.html b/tests/commonmark/51-Setext_headings.html new file mode 100644 index 0000000..d2caac0 --- /dev/null +++ b/tests/commonmark/51-Setext_headings.html @@ -0,0 +1,2 @@ +

Foo bar +baz

\ No newline at end of file diff --git a/tests/commonmark/51-Setext_headings.md b/tests/commonmark/51-Setext_headings.md new file mode 100644 index 0000000..94959f3 --- /dev/null +++ b/tests/commonmark/51-Setext_headings.md @@ -0,0 +1,3 @@ +Foo *bar +baz* +==== \ No newline at end of file diff --git a/tests/commonmark/514-Links.html b/tests/commonmark/514-Links.html new file mode 100644 index 0000000..5e0f765 --- /dev/null +++ b/tests/commonmark/514-Links.html @@ -0,0 +1 @@ +

[bar][foo!]

\ No newline at end of file diff --git a/tests/commonmark/514-Links.md b/tests/commonmark/514-Links.md new file mode 100644 index 0000000..db7962f --- /dev/null +++ b/tests/commonmark/514-Links.md @@ -0,0 +1,3 @@ +[bar][foo\!] + +[foo!]: /url \ No newline at end of file diff --git a/tests/commonmark/518-Links.html b/tests/commonmark/518-Links.html new file mode 100644 index 0000000..a7d9a99 --- /dev/null +++ b/tests/commonmark/518-Links.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/518-Links.md b/tests/commonmark/518-Links.md new file mode 100644 index 0000000..0b6977f --- /dev/null +++ b/tests/commonmark/518-Links.md @@ -0,0 +1,3 @@ +[foo][ref\[] + +[ref\[]: /uri \ No newline at end of file diff --git a/tests/commonmark/519-Links.html b/tests/commonmark/519-Links.html new file mode 100644 index 0000000..82751e2 --- /dev/null +++ b/tests/commonmark/519-Links.html @@ -0,0 +1 @@ +

bar\

\ No newline at end of file diff --git a/tests/commonmark/519-Links.md b/tests/commonmark/519-Links.md new file mode 100644 index 0000000..22c252b --- /dev/null +++ b/tests/commonmark/519-Links.md @@ -0,0 +1,3 @@ +[bar\\]: /uri + +[bar\\] \ No newline at end of file diff --git a/tests/commonmark/52-Setext_headings.html b/tests/commonmark/52-Setext_headings.html new file mode 100644 index 0000000..c382f49 --- /dev/null +++ b/tests/commonmark/52-Setext_headings.html @@ -0,0 +1,2 @@ +

Foo

+

Foo

\ No newline at end of file diff --git a/tests/commonmark/52-Setext_headings.md b/tests/commonmark/52-Setext_headings.md new file mode 100644 index 0000000..1a9888f --- /dev/null +++ b/tests/commonmark/52-Setext_headings.md @@ -0,0 +1,5 @@ +Foo +------------------------- + +Foo += \ No newline at end of file diff --git a/tests/commonmark/520-Links.html b/tests/commonmark/520-Links.html new file mode 100644 index 0000000..068a4d0 --- /dev/null +++ b/tests/commonmark/520-Links.html @@ -0,0 +1,2 @@ +

[]

+

[]: /uri

\ No newline at end of file diff --git a/tests/commonmark/520-Links.md b/tests/commonmark/520-Links.md new file mode 100644 index 0000000..4d27829 --- /dev/null +++ b/tests/commonmark/520-Links.md @@ -0,0 +1,3 @@ +[] + +[]: /uri \ No newline at end of file diff --git a/tests/commonmark/521-Links.html b/tests/commonmark/521-Links.html new file mode 100644 index 0000000..9fabbc6 --- /dev/null +++ b/tests/commonmark/521-Links.html @@ -0,0 +1,4 @@ +

[ +]

+

[ +]: /uri

\ No newline at end of file diff --git a/tests/commonmark/521-Links.md b/tests/commonmark/521-Links.md new file mode 100644 index 0000000..911be99 --- /dev/null +++ b/tests/commonmark/521-Links.md @@ -0,0 +1,5 @@ +[ + ] + +[ + ]: /uri \ No newline at end of file diff --git a/tests/commonmark/522-Links.html b/tests/commonmark/522-Links.html new file mode 100644 index 0000000..de843ed --- /dev/null +++ b/tests/commonmark/522-Links.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/522-Links.md b/tests/commonmark/522-Links.md new file mode 100644 index 0000000..083537a --- /dev/null +++ b/tests/commonmark/522-Links.md @@ -0,0 +1,3 @@ +[foo][] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/523-Links.html b/tests/commonmark/523-Links.html new file mode 100644 index 0000000..b11501f --- /dev/null +++ b/tests/commonmark/523-Links.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/523-Links.md b/tests/commonmark/523-Links.md new file mode 100644 index 0000000..a4dfedf --- /dev/null +++ b/tests/commonmark/523-Links.md @@ -0,0 +1,3 @@ +[*foo* bar][] + +[*foo* bar]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/524-Links.html b/tests/commonmark/524-Links.html new file mode 100644 index 0000000..9def84e --- /dev/null +++ b/tests/commonmark/524-Links.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/524-Links.md b/tests/commonmark/524-Links.md new file mode 100644 index 0000000..389eccf --- /dev/null +++ b/tests/commonmark/524-Links.md @@ -0,0 +1,3 @@ +[Foo][] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/526-Links.html b/tests/commonmark/526-Links.html new file mode 100644 index 0000000..de843ed --- /dev/null +++ b/tests/commonmark/526-Links.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/526-Links.md b/tests/commonmark/526-Links.md new file mode 100644 index 0000000..4ab1d3d --- /dev/null +++ b/tests/commonmark/526-Links.md @@ -0,0 +1,3 @@ +[foo] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/527-Links.html b/tests/commonmark/527-Links.html new file mode 100644 index 0000000..b11501f --- /dev/null +++ b/tests/commonmark/527-Links.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/527-Links.md b/tests/commonmark/527-Links.md new file mode 100644 index 0000000..bdae9df --- /dev/null +++ b/tests/commonmark/527-Links.md @@ -0,0 +1,3 @@ +[*foo* bar] + +[*foo* bar]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/528-Links.html b/tests/commonmark/528-Links.html new file mode 100644 index 0000000..8c9b6bd --- /dev/null +++ b/tests/commonmark/528-Links.html @@ -0,0 +1 @@ +

[foo bar]

\ No newline at end of file diff --git a/tests/commonmark/528-Links.md b/tests/commonmark/528-Links.md new file mode 100644 index 0000000..76264d6 --- /dev/null +++ b/tests/commonmark/528-Links.md @@ -0,0 +1,3 @@ +[[*foo* bar]] + +[*foo* bar]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/53-Setext_headings.html b/tests/commonmark/53-Setext_headings.html new file mode 100644 index 0000000..f268029 --- /dev/null +++ b/tests/commonmark/53-Setext_headings.html @@ -0,0 +1,3 @@ +

Foo

+

Foo

+

Foo

\ No newline at end of file diff --git a/tests/commonmark/53-Setext_headings.md b/tests/commonmark/53-Setext_headings.md new file mode 100644 index 0000000..6dbbfd3 --- /dev/null +++ b/tests/commonmark/53-Setext_headings.md @@ -0,0 +1,8 @@ + Foo +--- + + Foo +----- + + Foo + === \ No newline at end of file diff --git a/tests/commonmark/530-Links.html b/tests/commonmark/530-Links.html new file mode 100644 index 0000000..9def84e --- /dev/null +++ b/tests/commonmark/530-Links.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/530-Links.md b/tests/commonmark/530-Links.md new file mode 100644 index 0000000..36b2412 --- /dev/null +++ b/tests/commonmark/530-Links.md @@ -0,0 +1,3 @@ +[Foo] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/531-Links.html b/tests/commonmark/531-Links.html new file mode 100644 index 0000000..ed8faed --- /dev/null +++ b/tests/commonmark/531-Links.html @@ -0,0 +1 @@ +

foo bar

\ No newline at end of file diff --git a/tests/commonmark/531-Links.md b/tests/commonmark/531-Links.md new file mode 100644 index 0000000..34aca25 --- /dev/null +++ b/tests/commonmark/531-Links.md @@ -0,0 +1,3 @@ +[foo] bar + +[foo]: /url \ No newline at end of file diff --git a/tests/commonmark/532-Links.html b/tests/commonmark/532-Links.html new file mode 100644 index 0000000..5b0f6bc --- /dev/null +++ b/tests/commonmark/532-Links.html @@ -0,0 +1 @@ +

[foo]

\ No newline at end of file diff --git a/tests/commonmark/532-Links.md b/tests/commonmark/532-Links.md new file mode 100644 index 0000000..4946e0e --- /dev/null +++ b/tests/commonmark/532-Links.md @@ -0,0 +1,3 @@ +\[foo] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/534-Links.html b/tests/commonmark/534-Links.html new file mode 100644 index 0000000..9a61fdf --- /dev/null +++ b/tests/commonmark/534-Links.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/534-Links.md b/tests/commonmark/534-Links.md new file mode 100644 index 0000000..6a0d814 --- /dev/null +++ b/tests/commonmark/534-Links.md @@ -0,0 +1,4 @@ +[foo][bar] + +[foo]: /url1 +[bar]: /url2 \ No newline at end of file diff --git a/tests/commonmark/535-Links.html b/tests/commonmark/535-Links.html new file mode 100644 index 0000000..e85752e --- /dev/null +++ b/tests/commonmark/535-Links.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/535-Links.md b/tests/commonmark/535-Links.md new file mode 100644 index 0000000..7101c72 --- /dev/null +++ b/tests/commonmark/535-Links.md @@ -0,0 +1,3 @@ +[foo][] + +[foo]: /url1 \ No newline at end of file diff --git a/tests/commonmark/537-Links.html b/tests/commonmark/537-Links.html new file mode 100644 index 0000000..78405e7 --- /dev/null +++ b/tests/commonmark/537-Links.html @@ -0,0 +1 @@ +

foo(not a link)

\ No newline at end of file diff --git a/tests/commonmark/537-Links.md b/tests/commonmark/537-Links.md new file mode 100644 index 0000000..0d9a942 --- /dev/null +++ b/tests/commonmark/537-Links.md @@ -0,0 +1,3 @@ +[foo](not a link) + +[foo]: /url1 \ No newline at end of file diff --git a/tests/commonmark/538-Links.html b/tests/commonmark/538-Links.html new file mode 100644 index 0000000..0c8328d --- /dev/null +++ b/tests/commonmark/538-Links.html @@ -0,0 +1 @@ +

[foo]bar

\ No newline at end of file diff --git a/tests/commonmark/538-Links.md b/tests/commonmark/538-Links.md new file mode 100644 index 0000000..ba89017 --- /dev/null +++ b/tests/commonmark/538-Links.md @@ -0,0 +1,3 @@ +[foo][bar][baz] + +[baz]: /url \ No newline at end of file diff --git a/tests/commonmark/539-Links.html b/tests/commonmark/539-Links.html new file mode 100644 index 0000000..b7eb7d8 --- /dev/null +++ b/tests/commonmark/539-Links.html @@ -0,0 +1 @@ +

foobaz

\ No newline at end of file diff --git a/tests/commonmark/539-Links.md b/tests/commonmark/539-Links.md new file mode 100644 index 0000000..794a65c --- /dev/null +++ b/tests/commonmark/539-Links.md @@ -0,0 +1,4 @@ +[foo][bar][baz] + +[baz]: /url1 +[bar]: /url2 \ No newline at end of file diff --git a/tests/commonmark/54-Setext_headings.html b/tests/commonmark/54-Setext_headings.html new file mode 100644 index 0000000..5f253de --- /dev/null +++ b/tests/commonmark/54-Setext_headings.html @@ -0,0 +1,6 @@ +
Foo
+---
+
+Foo
+
+
\ No newline at end of file diff --git a/tests/commonmark/54-Setext_headings.md b/tests/commonmark/54-Setext_headings.md new file mode 100644 index 0000000..b4375d8 --- /dev/null +++ b/tests/commonmark/54-Setext_headings.md @@ -0,0 +1,5 @@ + Foo + --- + + Foo +--- \ No newline at end of file diff --git a/tests/commonmark/540-Links.html b/tests/commonmark/540-Links.html new file mode 100644 index 0000000..c1d9e46 --- /dev/null +++ b/tests/commonmark/540-Links.html @@ -0,0 +1 @@ +

[foo]bar

\ No newline at end of file diff --git a/tests/commonmark/540-Links.md b/tests/commonmark/540-Links.md new file mode 100644 index 0000000..9ea2571 --- /dev/null +++ b/tests/commonmark/540-Links.md @@ -0,0 +1,4 @@ +[foo][bar][baz] + +[baz]: /url1 +[foo]: /url2 \ No newline at end of file diff --git a/tests/commonmark/541-Images.html b/tests/commonmark/541-Images.html new file mode 100644 index 0000000..c5760be --- /dev/null +++ b/tests/commonmark/541-Images.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/541-Images.md b/tests/commonmark/541-Images.md new file mode 100644 index 0000000..b091cb1 --- /dev/null +++ b/tests/commonmark/541-Images.md @@ -0,0 +1 @@ +![foo](/url "title") \ No newline at end of file diff --git a/tests/commonmark/547-Images.html b/tests/commonmark/547-Images.html new file mode 100644 index 0000000..b97f8e4 --- /dev/null +++ b/tests/commonmark/547-Images.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/547-Images.md b/tests/commonmark/547-Images.md new file mode 100644 index 0000000..fd8d016 --- /dev/null +++ b/tests/commonmark/547-Images.md @@ -0,0 +1 @@ +![foo](train.jpg) \ No newline at end of file diff --git a/tests/commonmark/550-Images.html b/tests/commonmark/550-Images.html new file mode 100644 index 0000000..c3804a0 --- /dev/null +++ b/tests/commonmark/550-Images.html @@ -0,0 +1 @@ +

\ No newline at end of file diff --git a/tests/commonmark/550-Images.md b/tests/commonmark/550-Images.md new file mode 100644 index 0000000..addf61b --- /dev/null +++ b/tests/commonmark/550-Images.md @@ -0,0 +1 @@ +![](/url) \ No newline at end of file diff --git a/tests/commonmark/551-Images.html b/tests/commonmark/551-Images.html new file mode 100644 index 0000000..8741dc8 --- /dev/null +++ b/tests/commonmark/551-Images.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/551-Images.md b/tests/commonmark/551-Images.md new file mode 100644 index 0000000..7c2598a --- /dev/null +++ b/tests/commonmark/551-Images.md @@ -0,0 +1,3 @@ +![foo][bar] + +[bar]: /url \ No newline at end of file diff --git a/tests/commonmark/552-Images.html b/tests/commonmark/552-Images.html new file mode 100644 index 0000000..8741dc8 --- /dev/null +++ b/tests/commonmark/552-Images.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/552-Images.md b/tests/commonmark/552-Images.md new file mode 100644 index 0000000..e0c1258 --- /dev/null +++ b/tests/commonmark/552-Images.md @@ -0,0 +1,3 @@ +![foo][bar] + +[BAR]: /url \ No newline at end of file diff --git a/tests/commonmark/553-Images.html b/tests/commonmark/553-Images.html new file mode 100644 index 0000000..c5760be --- /dev/null +++ b/tests/commonmark/553-Images.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/553-Images.md b/tests/commonmark/553-Images.md new file mode 100644 index 0000000..286662e --- /dev/null +++ b/tests/commonmark/553-Images.md @@ -0,0 +1,3 @@ +![foo][] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/555-Images.html b/tests/commonmark/555-Images.html new file mode 100644 index 0000000..5784b0f --- /dev/null +++ b/tests/commonmark/555-Images.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/555-Images.md b/tests/commonmark/555-Images.md new file mode 100644 index 0000000..c990d4e --- /dev/null +++ b/tests/commonmark/555-Images.md @@ -0,0 +1,3 @@ +![Foo][] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/557-Images.html b/tests/commonmark/557-Images.html new file mode 100644 index 0000000..c5760be --- /dev/null +++ b/tests/commonmark/557-Images.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/557-Images.md b/tests/commonmark/557-Images.md new file mode 100644 index 0000000..823ae17 --- /dev/null +++ b/tests/commonmark/557-Images.md @@ -0,0 +1,3 @@ +![foo] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/560-Images.html b/tests/commonmark/560-Images.html new file mode 100644 index 0000000..5784b0f --- /dev/null +++ b/tests/commonmark/560-Images.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/560-Images.md b/tests/commonmark/560-Images.md new file mode 100644 index 0000000..54f8e22 --- /dev/null +++ b/tests/commonmark/560-Images.md @@ -0,0 +1,3 @@ +![Foo] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/561-Images.html b/tests/commonmark/561-Images.html new file mode 100644 index 0000000..4187ddf --- /dev/null +++ b/tests/commonmark/561-Images.html @@ -0,0 +1 @@ +

![foo]

\ No newline at end of file diff --git a/tests/commonmark/561-Images.md b/tests/commonmark/561-Images.md new file mode 100644 index 0000000..2e5d7b2 --- /dev/null +++ b/tests/commonmark/561-Images.md @@ -0,0 +1,3 @@ +\!\[foo] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/562-Images.html b/tests/commonmark/562-Images.html new file mode 100644 index 0000000..5d16dbd --- /dev/null +++ b/tests/commonmark/562-Images.html @@ -0,0 +1 @@ +

!foo

\ No newline at end of file diff --git a/tests/commonmark/562-Images.md b/tests/commonmark/562-Images.md new file mode 100644 index 0000000..5e6a9bb --- /dev/null +++ b/tests/commonmark/562-Images.md @@ -0,0 +1,3 @@ +\![foo] + +[foo]: /url "title" \ No newline at end of file diff --git a/tests/commonmark/563-Autolinks.html b/tests/commonmark/563-Autolinks.html new file mode 100644 index 0000000..1fb4aed --- /dev/null +++ b/tests/commonmark/563-Autolinks.html @@ -0,0 +1 @@ +

http://foo.bar.baz

\ No newline at end of file diff --git a/tests/commonmark/563-Autolinks.md b/tests/commonmark/563-Autolinks.md new file mode 100644 index 0000000..99caf23 --- /dev/null +++ b/tests/commonmark/563-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/564-Autolinks.html b/tests/commonmark/564-Autolinks.html new file mode 100644 index 0000000..5a0147a --- /dev/null +++ b/tests/commonmark/564-Autolinks.html @@ -0,0 +1 @@ +

http://foo.bar.baz/test?q=hello&id=22&boolean

\ No newline at end of file diff --git a/tests/commonmark/564-Autolinks.md b/tests/commonmark/564-Autolinks.md new file mode 100644 index 0000000..3e4c76a --- /dev/null +++ b/tests/commonmark/564-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/565-Autolinks.html b/tests/commonmark/565-Autolinks.html new file mode 100644 index 0000000..2b855c7 --- /dev/null +++ b/tests/commonmark/565-Autolinks.html @@ -0,0 +1 @@ +

irc://foo.bar:2233/baz

\ No newline at end of file diff --git a/tests/commonmark/565-Autolinks.md b/tests/commonmark/565-Autolinks.md new file mode 100644 index 0000000..c748571 --- /dev/null +++ b/tests/commonmark/565-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/566-Autolinks.html b/tests/commonmark/566-Autolinks.html new file mode 100644 index 0000000..0388080 --- /dev/null +++ b/tests/commonmark/566-Autolinks.html @@ -0,0 +1 @@ +

MAILTO:FOO@BAR.BAZ

\ No newline at end of file diff --git a/tests/commonmark/566-Autolinks.md b/tests/commonmark/566-Autolinks.md new file mode 100644 index 0000000..b81238f --- /dev/null +++ b/tests/commonmark/566-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/569-Autolinks.html b/tests/commonmark/569-Autolinks.html new file mode 100644 index 0000000..2a4d7ce --- /dev/null +++ b/tests/commonmark/569-Autolinks.html @@ -0,0 +1 @@ +

http://../

\ No newline at end of file diff --git a/tests/commonmark/569-Autolinks.md b/tests/commonmark/569-Autolinks.md new file mode 100644 index 0000000..ab5fc74 --- /dev/null +++ b/tests/commonmark/569-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/57-Setext_headings.html b/tests/commonmark/57-Setext_headings.html new file mode 100644 index 0000000..07a67bf --- /dev/null +++ b/tests/commonmark/57-Setext_headings.html @@ -0,0 +1,4 @@ +

Foo += =

+

Foo

+
\ No newline at end of file diff --git a/tests/commonmark/57-Setext_headings.md b/tests/commonmark/57-Setext_headings.md new file mode 100644 index 0000000..915aa4c --- /dev/null +++ b/tests/commonmark/57-Setext_headings.md @@ -0,0 +1,5 @@ +Foo += = + +Foo +--- - \ No newline at end of file diff --git a/tests/commonmark/571-Autolinks.html b/tests/commonmark/571-Autolinks.html new file mode 100644 index 0000000..2812d63 --- /dev/null +++ b/tests/commonmark/571-Autolinks.html @@ -0,0 +1 @@ +

<http://foo.bar/baz bim>

\ No newline at end of file diff --git a/tests/commonmark/571-Autolinks.md b/tests/commonmark/571-Autolinks.md new file mode 100644 index 0000000..98bb309 --- /dev/null +++ b/tests/commonmark/571-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/573-Autolinks.html b/tests/commonmark/573-Autolinks.html new file mode 100644 index 0000000..79d86ed --- /dev/null +++ b/tests/commonmark/573-Autolinks.html @@ -0,0 +1 @@ +

foo@bar.example.com

\ No newline at end of file diff --git a/tests/commonmark/573-Autolinks.md b/tests/commonmark/573-Autolinks.md new file mode 100644 index 0000000..97ce9c8 --- /dev/null +++ b/tests/commonmark/573-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/574-Autolinks.html b/tests/commonmark/574-Autolinks.html new file mode 100644 index 0000000..6bd018d --- /dev/null +++ b/tests/commonmark/574-Autolinks.html @@ -0,0 +1 @@ +

foo+special@Bar.baz-bar0.com

\ No newline at end of file diff --git a/tests/commonmark/574-Autolinks.md b/tests/commonmark/574-Autolinks.md new file mode 100644 index 0000000..f8018ff --- /dev/null +++ b/tests/commonmark/574-Autolinks.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/577-Autolinks.html b/tests/commonmark/577-Autolinks.html new file mode 100644 index 0000000..4765ff5 --- /dev/null +++ b/tests/commonmark/577-Autolinks.html @@ -0,0 +1 @@ +

< http://foo.bar >

\ No newline at end of file diff --git a/tests/commonmark/577-Autolinks.md b/tests/commonmark/577-Autolinks.md new file mode 100644 index 0000000..563fbc0 --- /dev/null +++ b/tests/commonmark/577-Autolinks.md @@ -0,0 +1 @@ +< http://foo.bar > \ No newline at end of file diff --git a/tests/commonmark/58-Setext_headings.html b/tests/commonmark/58-Setext_headings.html new file mode 100644 index 0000000..0934dc2 --- /dev/null +++ b/tests/commonmark/58-Setext_headings.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/58-Setext_headings.md b/tests/commonmark/58-Setext_headings.md new file mode 100644 index 0000000..cc09e50 --- /dev/null +++ b/tests/commonmark/58-Setext_headings.md @@ -0,0 +1,2 @@ +Foo +----- \ No newline at end of file diff --git a/tests/commonmark/580-Autolinks.html b/tests/commonmark/580-Autolinks.html new file mode 100644 index 0000000..e46d6c5 --- /dev/null +++ b/tests/commonmark/580-Autolinks.html @@ -0,0 +1 @@ +

http://example.com

\ No newline at end of file diff --git a/tests/commonmark/580-Autolinks.md b/tests/commonmark/580-Autolinks.md new file mode 100644 index 0000000..b7d1664 --- /dev/null +++ b/tests/commonmark/580-Autolinks.md @@ -0,0 +1 @@ +http://example.com \ No newline at end of file diff --git a/tests/commonmark/581-Autolinks.html b/tests/commonmark/581-Autolinks.html new file mode 100644 index 0000000..f39926d --- /dev/null +++ b/tests/commonmark/581-Autolinks.html @@ -0,0 +1 @@ +

foo@bar.example.com

\ No newline at end of file diff --git a/tests/commonmark/581-Autolinks.md b/tests/commonmark/581-Autolinks.md new file mode 100644 index 0000000..1a1c7da --- /dev/null +++ b/tests/commonmark/581-Autolinks.md @@ -0,0 +1 @@ +foo@bar.example.com \ No newline at end of file diff --git a/tests/commonmark/582-Raw_HTML.html b/tests/commonmark/582-Raw_HTML.html new file mode 100644 index 0000000..d420fea --- /dev/null +++ b/tests/commonmark/582-Raw_HTML.html @@ -0,0 +1 @@ +

\ No newline at end of file diff --git a/tests/commonmark/582-Raw_HTML.md b/tests/commonmark/582-Raw_HTML.md new file mode 100644 index 0000000..4e45854 --- /dev/null +++ b/tests/commonmark/582-Raw_HTML.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/583-Raw_HTML.html b/tests/commonmark/583-Raw_HTML.html new file mode 100644 index 0000000..4630655 --- /dev/null +++ b/tests/commonmark/583-Raw_HTML.html @@ -0,0 +1 @@ +

\ No newline at end of file diff --git a/tests/commonmark/583-Raw_HTML.md b/tests/commonmark/583-Raw_HTML.md new file mode 100644 index 0000000..29552cb --- /dev/null +++ b/tests/commonmark/583-Raw_HTML.md @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/commonmark/586-Raw_HTML.html b/tests/commonmark/586-Raw_HTML.html new file mode 100644 index 0000000..cfdf840 --- /dev/null +++ b/tests/commonmark/586-Raw_HTML.html @@ -0,0 +1 @@ +

Foo

\ No newline at end of file diff --git a/tests/commonmark/586-Raw_HTML.md b/tests/commonmark/586-Raw_HTML.md new file mode 100644 index 0000000..0d6e2f4 --- /dev/null +++ b/tests/commonmark/586-Raw_HTML.md @@ -0,0 +1 @@ +Foo \ No newline at end of file diff --git a/tests/commonmark/588-Raw_HTML.html b/tests/commonmark/588-Raw_HTML.html new file mode 100644 index 0000000..f4919e4 --- /dev/null +++ b/tests/commonmark/588-Raw_HTML.html @@ -0,0 +1 @@ +

<a h*#ref="hi">

\ No newline at end of file diff --git a/tests/commonmark/588-Raw_HTML.md b/tests/commonmark/588-Raw_HTML.md new file mode 100644 index 0000000..c2ed18e --- /dev/null +++ b/tests/commonmark/588-Raw_HTML.md @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/589-Raw_HTML.html b/tests/commonmark/589-Raw_HTML.html new file mode 100644 index 0000000..6011f1b --- /dev/null +++ b/tests/commonmark/589-Raw_HTML.html @@ -0,0 +1 @@ +

<a href="hi'> <a href=hi'>

\ No newline at end of file diff --git a/tests/commonmark/589-Raw_HTML.md b/tests/commonmark/589-Raw_HTML.md new file mode 100644 index 0000000..9bd3061 --- /dev/null +++ b/tests/commonmark/589-Raw_HTML.md @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/594-Raw_HTML.html b/tests/commonmark/594-Raw_HTML.html new file mode 100644 index 0000000..8d2779d --- /dev/null +++ b/tests/commonmark/594-Raw_HTML.html @@ -0,0 +1,2 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/594-Raw_HTML.md b/tests/commonmark/594-Raw_HTML.md new file mode 100644 index 0000000..dc33bec --- /dev/null +++ b/tests/commonmark/594-Raw_HTML.md @@ -0,0 +1,2 @@ +foo \ No newline at end of file diff --git a/tests/commonmark/595-Raw_HTML.html b/tests/commonmark/595-Raw_HTML.html new file mode 100644 index 0000000..a326709 --- /dev/null +++ b/tests/commonmark/595-Raw_HTML.html @@ -0,0 +1 @@ +

foo <!-- not a comment -- two hyphens -->

\ No newline at end of file diff --git a/tests/commonmark/595-Raw_HTML.md b/tests/commonmark/595-Raw_HTML.md new file mode 100644 index 0000000..967ba8a --- /dev/null +++ b/tests/commonmark/595-Raw_HTML.md @@ -0,0 +1 @@ +foo \ No newline at end of file diff --git a/tests/commonmark/596-Raw_HTML.html b/tests/commonmark/596-Raw_HTML.html new file mode 100644 index 0000000..58856ef --- /dev/null +++ b/tests/commonmark/596-Raw_HTML.html @@ -0,0 +1,2 @@ +

foo <!--> foo -->

+

foo <!-- foo--->

\ No newline at end of file diff --git a/tests/commonmark/596-Raw_HTML.md b/tests/commonmark/596-Raw_HTML.md new file mode 100644 index 0000000..c5e222d --- /dev/null +++ b/tests/commonmark/596-Raw_HTML.md @@ -0,0 +1,3 @@ +foo foo --> + +foo \ No newline at end of file diff --git a/tests/commonmark/6-Tabs.html b/tests/commonmark/6-Tabs.html new file mode 100644 index 0000000..dfc41d9 --- /dev/null +++ b/tests/commonmark/6-Tabs.html @@ -0,0 +1,4 @@ +
+
  foo
+
+
\ No newline at end of file diff --git a/tests/commonmark/6-Tabs.md b/tests/commonmark/6-Tabs.md new file mode 100644 index 0000000..a5c04f5 --- /dev/null +++ b/tests/commonmark/6-Tabs.md @@ -0,0 +1 @@ +> foo \ No newline at end of file diff --git a/tests/commonmark/60-Setext_headings.html b/tests/commonmark/60-Setext_headings.html new file mode 100644 index 0000000..347ef3b --- /dev/null +++ b/tests/commonmark/60-Setext_headings.html @@ -0,0 +1,4 @@ +

`Foo

+

`

+

<a title="a lot

+

of dashes"/>

\ No newline at end of file diff --git a/tests/commonmark/60-Setext_headings.md b/tests/commonmark/60-Setext_headings.md new file mode 100644 index 0000000..7bd0cdb --- /dev/null +++ b/tests/commonmark/60-Setext_headings.md @@ -0,0 +1,7 @@ +`Foo +---- +` + +
\ No newline at end of file diff --git a/tests/commonmark/600-Raw_HTML.html b/tests/commonmark/600-Raw_HTML.html new file mode 100644 index 0000000..b47ad7d --- /dev/null +++ b/tests/commonmark/600-Raw_HTML.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/600-Raw_HTML.md b/tests/commonmark/600-Raw_HTML.md new file mode 100644 index 0000000..5d08e33 --- /dev/null +++ b/tests/commonmark/600-Raw_HTML.md @@ -0,0 +1 @@ +foo \ No newline at end of file diff --git a/tests/commonmark/601-Raw_HTML.html b/tests/commonmark/601-Raw_HTML.html new file mode 100644 index 0000000..2b13be5 --- /dev/null +++ b/tests/commonmark/601-Raw_HTML.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/601-Raw_HTML.md b/tests/commonmark/601-Raw_HTML.md new file mode 100644 index 0000000..b75cefc --- /dev/null +++ b/tests/commonmark/601-Raw_HTML.md @@ -0,0 +1 @@ +foo \ No newline at end of file diff --git a/tests/commonmark/603-Hard_line_breaks.html b/tests/commonmark/603-Hard_line_breaks.html new file mode 100644 index 0000000..61c6c4a --- /dev/null +++ b/tests/commonmark/603-Hard_line_breaks.html @@ -0,0 +1,2 @@ +

foo
+baz

\ No newline at end of file diff --git a/tests/commonmark/603-Hard_line_breaks.md b/tests/commonmark/603-Hard_line_breaks.md new file mode 100644 index 0000000..c302b6f --- /dev/null +++ b/tests/commonmark/603-Hard_line_breaks.md @@ -0,0 +1,2 @@ +foo +baz \ No newline at end of file diff --git a/tests/commonmark/605-Hard_line_breaks.html b/tests/commonmark/605-Hard_line_breaks.html new file mode 100644 index 0000000..61c6c4a --- /dev/null +++ b/tests/commonmark/605-Hard_line_breaks.html @@ -0,0 +1,2 @@ +

foo
+baz

\ No newline at end of file diff --git a/tests/commonmark/605-Hard_line_breaks.md b/tests/commonmark/605-Hard_line_breaks.md new file mode 100644 index 0000000..901c87d --- /dev/null +++ b/tests/commonmark/605-Hard_line_breaks.md @@ -0,0 +1,2 @@ +foo +baz \ No newline at end of file diff --git a/tests/commonmark/606-Hard_line_breaks.html b/tests/commonmark/606-Hard_line_breaks.html new file mode 100644 index 0000000..90d6646 --- /dev/null +++ b/tests/commonmark/606-Hard_line_breaks.html @@ -0,0 +1,2 @@ +

foo
+bar

\ No newline at end of file diff --git a/tests/commonmark/606-Hard_line_breaks.md b/tests/commonmark/606-Hard_line_breaks.md new file mode 100644 index 0000000..8444d67 --- /dev/null +++ b/tests/commonmark/606-Hard_line_breaks.md @@ -0,0 +1,2 @@ +foo + bar \ No newline at end of file diff --git a/tests/commonmark/608-Hard_line_breaks.html b/tests/commonmark/608-Hard_line_breaks.html new file mode 100644 index 0000000..e5932b4 --- /dev/null +++ b/tests/commonmark/608-Hard_line_breaks.html @@ -0,0 +1,2 @@ +

foo
+bar

\ No newline at end of file diff --git a/tests/commonmark/608-Hard_line_breaks.md b/tests/commonmark/608-Hard_line_breaks.md new file mode 100644 index 0000000..0fd7853 --- /dev/null +++ b/tests/commonmark/608-Hard_line_breaks.md @@ -0,0 +1,2 @@ +*foo +bar* \ No newline at end of file diff --git a/tests/commonmark/610-Hard_line_breaks.html b/tests/commonmark/610-Hard_line_breaks.html new file mode 100644 index 0000000..7807a0b --- /dev/null +++ b/tests/commonmark/610-Hard_line_breaks.html @@ -0,0 +1 @@ +

code span

\ No newline at end of file diff --git a/tests/commonmark/610-Hard_line_breaks.md b/tests/commonmark/610-Hard_line_breaks.md new file mode 100644 index 0000000..26ba1c3 --- /dev/null +++ b/tests/commonmark/610-Hard_line_breaks.md @@ -0,0 +1,2 @@ +`code +span` \ No newline at end of file diff --git a/tests/commonmark/611-Hard_line_breaks.html b/tests/commonmark/611-Hard_line_breaks.html new file mode 100644 index 0000000..3b9c868 --- /dev/null +++ b/tests/commonmark/611-Hard_line_breaks.html @@ -0,0 +1 @@ +

code\ span

\ No newline at end of file diff --git a/tests/commonmark/611-Hard_line_breaks.md b/tests/commonmark/611-Hard_line_breaks.md new file mode 100644 index 0000000..5bb645c --- /dev/null +++ b/tests/commonmark/611-Hard_line_breaks.md @@ -0,0 +1,2 @@ +`code\ +span` \ No newline at end of file diff --git a/tests/commonmark/612-Hard_line_breaks.html b/tests/commonmark/612-Hard_line_breaks.html new file mode 100644 index 0000000..9bcb271 --- /dev/null +++ b/tests/commonmark/612-Hard_line_breaks.html @@ -0,0 +1,2 @@ +

\ No newline at end of file diff --git a/tests/commonmark/612-Hard_line_breaks.md b/tests/commonmark/612-Hard_line_breaks.md new file mode 100644 index 0000000..0202345 --- /dev/null +++ b/tests/commonmark/612-Hard_line_breaks.md @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/tests/commonmark/613-Hard_line_breaks.html b/tests/commonmark/613-Hard_line_breaks.html new file mode 100644 index 0000000..f42c1ee --- /dev/null +++ b/tests/commonmark/613-Hard_line_breaks.html @@ -0,0 +1,2 @@ +

\ No newline at end of file diff --git a/tests/commonmark/613-Hard_line_breaks.md b/tests/commonmark/613-Hard_line_breaks.md new file mode 100644 index 0000000..451beb2 --- /dev/null +++ b/tests/commonmark/613-Hard_line_breaks.md @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/tests/commonmark/614-Hard_line_breaks.html b/tests/commonmark/614-Hard_line_breaks.html new file mode 100644 index 0000000..8552a7d --- /dev/null +++ b/tests/commonmark/614-Hard_line_breaks.html @@ -0,0 +1 @@ +

foo\

\ No newline at end of file diff --git a/tests/commonmark/614-Hard_line_breaks.md b/tests/commonmark/614-Hard_line_breaks.md new file mode 100644 index 0000000..860501b --- /dev/null +++ b/tests/commonmark/614-Hard_line_breaks.md @@ -0,0 +1 @@ +foo\ \ No newline at end of file diff --git a/tests/commonmark/615-Hard_line_breaks.html b/tests/commonmark/615-Hard_line_breaks.html new file mode 100644 index 0000000..998ea40 --- /dev/null +++ b/tests/commonmark/615-Hard_line_breaks.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/615-Hard_line_breaks.md b/tests/commonmark/615-Hard_line_breaks.md new file mode 100644 index 0000000..76d546a --- /dev/null +++ b/tests/commonmark/615-Hard_line_breaks.md @@ -0,0 +1 @@ +foo \ No newline at end of file diff --git a/tests/commonmark/616-Hard_line_breaks.html b/tests/commonmark/616-Hard_line_breaks.html new file mode 100644 index 0000000..79bcf97 --- /dev/null +++ b/tests/commonmark/616-Hard_line_breaks.html @@ -0,0 +1 @@ +

foo\

\ No newline at end of file diff --git a/tests/commonmark/616-Hard_line_breaks.md b/tests/commonmark/616-Hard_line_breaks.md new file mode 100644 index 0000000..c03a1a7 --- /dev/null +++ b/tests/commonmark/616-Hard_line_breaks.md @@ -0,0 +1 @@ +### foo\ \ No newline at end of file diff --git a/tests/commonmark/617-Hard_line_breaks.html b/tests/commonmark/617-Hard_line_breaks.html new file mode 100644 index 0000000..2349504 --- /dev/null +++ b/tests/commonmark/617-Hard_line_breaks.html @@ -0,0 +1 @@ +

foo

\ No newline at end of file diff --git a/tests/commonmark/617-Hard_line_breaks.md b/tests/commonmark/617-Hard_line_breaks.md new file mode 100644 index 0000000..feafefb --- /dev/null +++ b/tests/commonmark/617-Hard_line_breaks.md @@ -0,0 +1 @@ +### foo \ No newline at end of file diff --git a/tests/commonmark/618-Soft_line_breaks.html b/tests/commonmark/618-Soft_line_breaks.html new file mode 100644 index 0000000..f55ff14 --- /dev/null +++ b/tests/commonmark/618-Soft_line_breaks.html @@ -0,0 +1,2 @@ +

foo +baz

\ No newline at end of file diff --git a/tests/commonmark/618-Soft_line_breaks.md b/tests/commonmark/618-Soft_line_breaks.md new file mode 100644 index 0000000..000c335 --- /dev/null +++ b/tests/commonmark/618-Soft_line_breaks.md @@ -0,0 +1,2 @@ +foo +baz \ No newline at end of file diff --git a/tests/commonmark/619-Soft_line_breaks.html b/tests/commonmark/619-Soft_line_breaks.html new file mode 100644 index 0000000..f55ff14 --- /dev/null +++ b/tests/commonmark/619-Soft_line_breaks.html @@ -0,0 +1,2 @@ +

foo +baz

\ No newline at end of file diff --git a/tests/commonmark/619-Soft_line_breaks.md b/tests/commonmark/619-Soft_line_breaks.md new file mode 100644 index 0000000..27acaef --- /dev/null +++ b/tests/commonmark/619-Soft_line_breaks.md @@ -0,0 +1,2 @@ +foo + baz \ No newline at end of file diff --git a/tests/commonmark/620-Textual_content.html b/tests/commonmark/620-Textual_content.html new file mode 100644 index 0000000..8d014a5 --- /dev/null +++ b/tests/commonmark/620-Textual_content.html @@ -0,0 +1 @@ +

hello $.;'there

\ No newline at end of file diff --git a/tests/commonmark/620-Textual_content.md b/tests/commonmark/620-Textual_content.md new file mode 100644 index 0000000..7f69759 --- /dev/null +++ b/tests/commonmark/620-Textual_content.md @@ -0,0 +1 @@ +hello $.;'there \ No newline at end of file diff --git a/tests/commonmark/621-Textual_content.html b/tests/commonmark/621-Textual_content.html new file mode 100644 index 0000000..c507a9f --- /dev/null +++ b/tests/commonmark/621-Textual_content.html @@ -0,0 +1 @@ +

Foo χρῆν

\ No newline at end of file diff --git a/tests/commonmark/621-Textual_content.md b/tests/commonmark/621-Textual_content.md new file mode 100644 index 0000000..bab0869 --- /dev/null +++ b/tests/commonmark/621-Textual_content.md @@ -0,0 +1 @@ +Foo χρῆν \ No newline at end of file diff --git a/tests/commonmark/622-Textual_content.html b/tests/commonmark/622-Textual_content.html new file mode 100644 index 0000000..7fd63f5 --- /dev/null +++ b/tests/commonmark/622-Textual_content.html @@ -0,0 +1 @@ +

Multiple spaces

\ No newline at end of file diff --git a/tests/commonmark/622-Textual_content.md b/tests/commonmark/622-Textual_content.md new file mode 100644 index 0000000..ec364d2 --- /dev/null +++ b/tests/commonmark/622-Textual_content.md @@ -0,0 +1 @@ +Multiple spaces \ No newline at end of file diff --git a/tests/commonmark/64-Setext_headings.html b/tests/commonmark/64-Setext_headings.html new file mode 100644 index 0000000..160eebf --- /dev/null +++ b/tests/commonmark/64-Setext_headings.html @@ -0,0 +1,2 @@ +

Foo +Bar

\ No newline at end of file diff --git a/tests/commonmark/64-Setext_headings.md b/tests/commonmark/64-Setext_headings.md new file mode 100644 index 0000000..2c1ce4e --- /dev/null +++ b/tests/commonmark/64-Setext_headings.md @@ -0,0 +1,3 @@ +Foo +Bar +--- \ No newline at end of file diff --git a/tests/commonmark/65-Setext_headings.html b/tests/commonmark/65-Setext_headings.html new file mode 100644 index 0000000..4341c8a --- /dev/null +++ b/tests/commonmark/65-Setext_headings.html @@ -0,0 +1,4 @@ +
+

Foo

+

Bar

+

Baz

\ No newline at end of file diff --git a/tests/commonmark/65-Setext_headings.md b/tests/commonmark/65-Setext_headings.md new file mode 100644 index 0000000..c94913e --- /dev/null +++ b/tests/commonmark/65-Setext_headings.md @@ -0,0 +1,6 @@ +--- +Foo +--- +Bar +--- +Baz \ No newline at end of file diff --git a/tests/commonmark/66-Setext_headings.html b/tests/commonmark/66-Setext_headings.html new file mode 100644 index 0000000..5dcefab --- /dev/null +++ b/tests/commonmark/66-Setext_headings.html @@ -0,0 +1 @@ +

====

\ No newline at end of file diff --git a/tests/commonmark/66-Setext_headings.md b/tests/commonmark/66-Setext_headings.md new file mode 100644 index 0000000..dce5313 --- /dev/null +++ b/tests/commonmark/66-Setext_headings.md @@ -0,0 +1,2 @@ + +==== \ No newline at end of file diff --git a/tests/commonmark/67-Setext_headings.html b/tests/commonmark/67-Setext_headings.html new file mode 100644 index 0000000..ba26476 --- /dev/null +++ b/tests/commonmark/67-Setext_headings.html @@ -0,0 +1,2 @@ +
+
\ No newline at end of file diff --git a/tests/commonmark/67-Setext_headings.md b/tests/commonmark/67-Setext_headings.md new file mode 100644 index 0000000..a49ba48 --- /dev/null +++ b/tests/commonmark/67-Setext_headings.md @@ -0,0 +1,2 @@ +--- +--- \ No newline at end of file diff --git a/tests/commonmark/69-Setext_headings.html b/tests/commonmark/69-Setext_headings.html new file mode 100644 index 0000000..856a873 --- /dev/null +++ b/tests/commonmark/69-Setext_headings.html @@ -0,0 +1,3 @@ +
foo
+
+
\ No newline at end of file diff --git a/tests/commonmark/69-Setext_headings.md b/tests/commonmark/69-Setext_headings.md new file mode 100644 index 0000000..126568b --- /dev/null +++ b/tests/commonmark/69-Setext_headings.md @@ -0,0 +1,2 @@ + foo +--- \ No newline at end of file diff --git a/tests/commonmark/72-Setext_headings.html b/tests/commonmark/72-Setext_headings.html new file mode 100644 index 0000000..94749e5 --- /dev/null +++ b/tests/commonmark/72-Setext_headings.html @@ -0,0 +1,3 @@ +

Foo

+

bar

+

baz

\ No newline at end of file diff --git a/tests/commonmark/72-Setext_headings.md b/tests/commonmark/72-Setext_headings.md new file mode 100644 index 0000000..249859b --- /dev/null +++ b/tests/commonmark/72-Setext_headings.md @@ -0,0 +1,5 @@ +Foo + +bar +--- +baz \ No newline at end of file diff --git a/tests/commonmark/73-Setext_headings.html b/tests/commonmark/73-Setext_headings.html new file mode 100644 index 0000000..b4be4aa --- /dev/null +++ b/tests/commonmark/73-Setext_headings.html @@ -0,0 +1,4 @@ +

Foo +bar

+
+

baz

\ No newline at end of file diff --git a/tests/commonmark/73-Setext_headings.md b/tests/commonmark/73-Setext_headings.md new file mode 100644 index 0000000..c3cb59b --- /dev/null +++ b/tests/commonmark/73-Setext_headings.md @@ -0,0 +1,6 @@ +Foo +bar + +--- + +baz \ No newline at end of file diff --git a/tests/commonmark/74-Setext_headings.html b/tests/commonmark/74-Setext_headings.html new file mode 100644 index 0000000..b4be4aa --- /dev/null +++ b/tests/commonmark/74-Setext_headings.html @@ -0,0 +1,4 @@ +

Foo +bar

+
+

baz

\ No newline at end of file diff --git a/tests/commonmark/74-Setext_headings.md b/tests/commonmark/74-Setext_headings.md new file mode 100644 index 0000000..4581a59 --- /dev/null +++ b/tests/commonmark/74-Setext_headings.md @@ -0,0 +1,4 @@ +Foo +bar +* * * +baz \ No newline at end of file diff --git a/tests/commonmark/75-Setext_headings.html b/tests/commonmark/75-Setext_headings.html new file mode 100644 index 0000000..d4916fc --- /dev/null +++ b/tests/commonmark/75-Setext_headings.html @@ -0,0 +1,4 @@ +

Foo +bar +--- +baz

\ No newline at end of file diff --git a/tests/commonmark/75-Setext_headings.md b/tests/commonmark/75-Setext_headings.md new file mode 100644 index 0000000..374a856 --- /dev/null +++ b/tests/commonmark/75-Setext_headings.md @@ -0,0 +1,4 @@ +Foo +bar +\--- +baz \ No newline at end of file diff --git a/tests/commonmark/76-Indented_code_blocks.html b/tests/commonmark/76-Indented_code_blocks.html new file mode 100644 index 0000000..86c09d6 --- /dev/null +++ b/tests/commonmark/76-Indented_code_blocks.html @@ -0,0 +1,3 @@ +
a simple
+  indented code block
+
\ No newline at end of file diff --git a/tests/commonmark/76-Indented_code_blocks.md b/tests/commonmark/76-Indented_code_blocks.md new file mode 100644 index 0000000..4deaa8b --- /dev/null +++ b/tests/commonmark/76-Indented_code_blocks.md @@ -0,0 +1,2 @@ + a simple + indented code block \ No newline at end of file diff --git a/tests/commonmark/77-Indented_code_blocks.html b/tests/commonmark/77-Indented_code_blocks.html new file mode 100644 index 0000000..c117426 --- /dev/null +++ b/tests/commonmark/77-Indented_code_blocks.html @@ -0,0 +1,6 @@ +
    +
  • +

    foo

    +

    bar

    +
  • +
\ No newline at end of file diff --git a/tests/commonmark/77-Indented_code_blocks.md b/tests/commonmark/77-Indented_code_blocks.md new file mode 100644 index 0000000..b6d4060 --- /dev/null +++ b/tests/commonmark/77-Indented_code_blocks.md @@ -0,0 +1,3 @@ + - foo + + bar \ No newline at end of file diff --git a/tests/commonmark/78-Indented_code_blocks.html b/tests/commonmark/78-Indented_code_blocks.html new file mode 100644 index 0000000..a26fa6d --- /dev/null +++ b/tests/commonmark/78-Indented_code_blocks.html @@ -0,0 +1,8 @@ +
    +
  1. +

    foo

    +
      +
    • bar
    • +
    +
  2. +
\ No newline at end of file diff --git a/tests/commonmark/78-Indented_code_blocks.md b/tests/commonmark/78-Indented_code_blocks.md new file mode 100644 index 0000000..2e7f002 --- /dev/null +++ b/tests/commonmark/78-Indented_code_blocks.md @@ -0,0 +1,3 @@ +1. foo + + - bar \ No newline at end of file diff --git a/tests/commonmark/79-Indented_code_blocks.html b/tests/commonmark/79-Indented_code_blocks.html new file mode 100644 index 0000000..c323416 --- /dev/null +++ b/tests/commonmark/79-Indented_code_blocks.html @@ -0,0 +1,5 @@ +
<a/>
+*hi*
+
+- one
+
\ No newline at end of file diff --git a/tests/commonmark/79-Indented_code_blocks.md b/tests/commonmark/79-Indented_code_blocks.md new file mode 100644 index 0000000..77bcc91 --- /dev/null +++ b/tests/commonmark/79-Indented_code_blocks.md @@ -0,0 +1,4 @@ +
+ *hi* + + - one \ No newline at end of file diff --git a/tests/commonmark/8-Tabs.html b/tests/commonmark/8-Tabs.html new file mode 100644 index 0000000..19d2322 --- /dev/null +++ b/tests/commonmark/8-Tabs.html @@ -0,0 +1,3 @@ +
foo
+bar
+
\ No newline at end of file diff --git a/tests/commonmark/8-Tabs.md b/tests/commonmark/8-Tabs.md new file mode 100644 index 0000000..69878dd --- /dev/null +++ b/tests/commonmark/8-Tabs.md @@ -0,0 +1,2 @@ + foo + bar \ No newline at end of file diff --git a/tests/commonmark/82-Indented_code_blocks.html b/tests/commonmark/82-Indented_code_blocks.html new file mode 100644 index 0000000..3effe0f --- /dev/null +++ b/tests/commonmark/82-Indented_code_blocks.html @@ -0,0 +1,2 @@ +

Foo +bar

\ No newline at end of file diff --git a/tests/commonmark/82-Indented_code_blocks.md b/tests/commonmark/82-Indented_code_blocks.md new file mode 100644 index 0000000..030bb78 --- /dev/null +++ b/tests/commonmark/82-Indented_code_blocks.md @@ -0,0 +1,2 @@ +Foo + bar diff --git a/tests/commonmark/83-Indented_code_blocks.html b/tests/commonmark/83-Indented_code_blocks.html new file mode 100644 index 0000000..0bafc69 --- /dev/null +++ b/tests/commonmark/83-Indented_code_blocks.html @@ -0,0 +1,3 @@ +
foo
+
+

bar

\ No newline at end of file diff --git a/tests/commonmark/83-Indented_code_blocks.md b/tests/commonmark/83-Indented_code_blocks.md new file mode 100644 index 0000000..0a4d905 --- /dev/null +++ b/tests/commonmark/83-Indented_code_blocks.md @@ -0,0 +1,2 @@ + foo +bar \ No newline at end of file diff --git a/tests/commonmark/84-Indented_code_blocks.html b/tests/commonmark/84-Indented_code_blocks.html new file mode 100644 index 0000000..ac80a6d --- /dev/null +++ b/tests/commonmark/84-Indented_code_blocks.html @@ -0,0 +1,7 @@ +

Heading

+
foo
+
+

Heading

+
foo
+
+
\ No newline at end of file diff --git a/tests/commonmark/84-Indented_code_blocks.md b/tests/commonmark/84-Indented_code_blocks.md new file mode 100644 index 0000000..31c0f8c --- /dev/null +++ b/tests/commonmark/84-Indented_code_blocks.md @@ -0,0 +1,6 @@ +# Heading + foo +Heading +------ + foo +---- \ No newline at end of file diff --git a/tests/commonmark/85-Indented_code_blocks.html b/tests/commonmark/85-Indented_code_blocks.html new file mode 100644 index 0000000..58d762c --- /dev/null +++ b/tests/commonmark/85-Indented_code_blocks.html @@ -0,0 +1,3 @@ +
    foo
+bar
+
\ No newline at end of file diff --git a/tests/commonmark/85-Indented_code_blocks.md b/tests/commonmark/85-Indented_code_blocks.md new file mode 100644 index 0000000..5a3e9eb --- /dev/null +++ b/tests/commonmark/85-Indented_code_blocks.md @@ -0,0 +1,2 @@ + foo + bar \ No newline at end of file diff --git a/tests/commonmark/86-Indented_code_blocks.html b/tests/commonmark/86-Indented_code_blocks.html new file mode 100644 index 0000000..d8cb1fa --- /dev/null +++ b/tests/commonmark/86-Indented_code_blocks.html @@ -0,0 +1,2 @@ +
foo
+
\ No newline at end of file diff --git a/tests/commonmark/86-Indented_code_blocks.md b/tests/commonmark/86-Indented_code_blocks.md new file mode 100644 index 0000000..1615a8b --- /dev/null +++ b/tests/commonmark/86-Indented_code_blocks.md @@ -0,0 +1,4 @@ + + + foo + diff --git a/tests/commonmark/87-Indented_code_blocks.html b/tests/commonmark/87-Indented_code_blocks.html new file mode 100644 index 0000000..5f9841a --- /dev/null +++ b/tests/commonmark/87-Indented_code_blocks.html @@ -0,0 +1,2 @@ +
foo  
+
\ No newline at end of file diff --git a/tests/commonmark/87-Indented_code_blocks.md b/tests/commonmark/87-Indented_code_blocks.md new file mode 100644 index 0000000..646fb29 --- /dev/null +++ b/tests/commonmark/87-Indented_code_blocks.md @@ -0,0 +1 @@ + foo \ No newline at end of file diff --git a/tests/commonmark/88-Fenced_code_blocks.html b/tests/commonmark/88-Fenced_code_blocks.html new file mode 100644 index 0000000..1b49269 --- /dev/null +++ b/tests/commonmark/88-Fenced_code_blocks.html @@ -0,0 +1,3 @@ +
<
+ >
+
\ No newline at end of file diff --git a/tests/commonmark/88-Fenced_code_blocks.md b/tests/commonmark/88-Fenced_code_blocks.md new file mode 100644 index 0000000..5bfac27 --- /dev/null +++ b/tests/commonmark/88-Fenced_code_blocks.md @@ -0,0 +1,4 @@ +``` +< + > +``` \ No newline at end of file diff --git a/tests/commonmark/89-Fenced_code_blocks.html b/tests/commonmark/89-Fenced_code_blocks.html new file mode 100644 index 0000000..1b49269 --- /dev/null +++ b/tests/commonmark/89-Fenced_code_blocks.html @@ -0,0 +1,3 @@ +
<
+ >
+
\ No newline at end of file diff --git a/tests/commonmark/89-Fenced_code_blocks.md b/tests/commonmark/89-Fenced_code_blocks.md new file mode 100644 index 0000000..71796b8 --- /dev/null +++ b/tests/commonmark/89-Fenced_code_blocks.md @@ -0,0 +1,4 @@ +~~~ +< + > +~~~ \ No newline at end of file diff --git a/tests/commonmark/9-Tabs.html b/tests/commonmark/9-Tabs.html new file mode 100644 index 0000000..52b535e --- /dev/null +++ b/tests/commonmark/9-Tabs.html @@ -0,0 +1,11 @@ +
    +
  • foo +
      +
    • bar +
        +
      • baz
      • +
      +
    • +
    +
  • +
\ No newline at end of file diff --git a/tests/commonmark/9-Tabs.md b/tests/commonmark/9-Tabs.md new file mode 100644 index 0000000..7a8b363 --- /dev/null +++ b/tests/commonmark/9-Tabs.md @@ -0,0 +1,3 @@ + - foo + - bar + - baz \ No newline at end of file diff --git a/tests/commonmark/90-Fenced_code_blocks.html b/tests/commonmark/90-Fenced_code_blocks.html new file mode 100644 index 0000000..c72c2e9 --- /dev/null +++ b/tests/commonmark/90-Fenced_code_blocks.html @@ -0,0 +1,3 @@ +
aaa
+~~~
+
\ No newline at end of file diff --git a/tests/commonmark/90-Fenced_code_blocks.md b/tests/commonmark/90-Fenced_code_blocks.md new file mode 100644 index 0000000..7c9f6c8 --- /dev/null +++ b/tests/commonmark/90-Fenced_code_blocks.md @@ -0,0 +1,4 @@ +``` +aaa +~~~ +``` \ No newline at end of file diff --git a/tests/commonmark/91-Fenced_code_blocks.html b/tests/commonmark/91-Fenced_code_blocks.html new file mode 100644 index 0000000..0c15179 --- /dev/null +++ b/tests/commonmark/91-Fenced_code_blocks.html @@ -0,0 +1,3 @@ +
aaa
+```
+
\ No newline at end of file diff --git a/tests/commonmark/91-Fenced_code_blocks.md b/tests/commonmark/91-Fenced_code_blocks.md new file mode 100644 index 0000000..1978be7 --- /dev/null +++ b/tests/commonmark/91-Fenced_code_blocks.md @@ -0,0 +1,4 @@ +~~~ +aaa +``` +~~~ \ No newline at end of file diff --git a/tests/commonmark/94-Fenced_code_blocks.html b/tests/commonmark/94-Fenced_code_blocks.html new file mode 100644 index 0000000..def7f2a --- /dev/null +++ b/tests/commonmark/94-Fenced_code_blocks.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/94-Fenced_code_blocks.md b/tests/commonmark/94-Fenced_code_blocks.md new file mode 100644 index 0000000..4f1408d --- /dev/null +++ b/tests/commonmark/94-Fenced_code_blocks.md @@ -0,0 +1 @@ +``` \ No newline at end of file diff --git a/tests/commonmark/97-Fenced_code_blocks.html b/tests/commonmark/97-Fenced_code_blocks.html new file mode 100644 index 0000000..8b957e4 --- /dev/null +++ b/tests/commonmark/97-Fenced_code_blocks.html @@ -0,0 +1,3 @@ +

+  
+
\ No newline at end of file diff --git a/tests/commonmark/97-Fenced_code_blocks.md b/tests/commonmark/97-Fenced_code_blocks.md new file mode 100644 index 0000000..ac1b221 --- /dev/null +++ b/tests/commonmark/97-Fenced_code_blocks.md @@ -0,0 +1,4 @@ +``` + + +``` \ No newline at end of file diff --git a/tests/commonmark/98-Fenced_code_blocks.html b/tests/commonmark/98-Fenced_code_blocks.html new file mode 100644 index 0000000..def7f2a --- /dev/null +++ b/tests/commonmark/98-Fenced_code_blocks.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/tests/commonmark/98-Fenced_code_blocks.md b/tests/commonmark/98-Fenced_code_blocks.md new file mode 100644 index 0000000..3c20575 --- /dev/null +++ b/tests/commonmark/98-Fenced_code_blocks.md @@ -0,0 +1,2 @@ +``` +``` \ No newline at end of file