From d071b4177c1a3897f4682e245046a45f362b6ac5 Mon Sep 17 00:00:00 2001
From: Toni Uhlig <matzeton@googlemail.com>
Date: Fri, 1 Oct 2021 14:21:33 +0200
Subject: Squashed 'deps/md4c/' content from commit 7f05330

git-subtree-dir: deps/md4c
git-subtree-split: 7f0533068b4319d8cb3d0f33ca9aa66a857734a6
---
 test/fuzz-input/commonmark.md | 40 ++++++++++++++++++++++++++++++++++++++++
 test/fuzz-input/gfm.md        | 10 ++++++++++
 test/fuzz-input/latex-math.md |  1 +
 test/fuzz-input/wiki.md       |  1 +
 4 files changed, 52 insertions(+)
 create mode 100644 test/fuzz-input/commonmark.md
 create mode 100644 test/fuzz-input/gfm.md
 create mode 100644 test/fuzz-input/latex-math.md
 create mode 100644 test/fuzz-input/wiki.md

(limited to 'test/fuzz-input')

diff --git a/test/fuzz-input/commonmark.md b/test/fuzz-input/commonmark.md
new file mode 100644
index 0000000..974d817
--- /dev/null
+++ b/test/fuzz-input/commonmark.md
@@ -0,0 +1,40 @@
+
+# h1
+## h2
+### h3
+#### h4
+##### h5
+###### h6
+
+h1
+==
+
+h2
+--
+
+--------------------
+
+    indented code
+
+```
+fenced code
+```
+
+<tag attr='val' attr2="val2">
+
+> quote
+
+* list item
+1. list item
+
+[ref]: /url
+
+paragraph
+&copy; &#1234; &#xabcd;
+`code`
+*emph* **strong** ***strong emph***
+_emph_ __strong__ ___strong emph___
+[ref] [ref][] [link](/url)
+![ref] ![ref][] ![img](/url)
+<http://example.com> <doe@example.com>
+\\ \* \. \` \
diff --git a/test/fuzz-input/gfm.md b/test/fuzz-input/gfm.md
new file mode 100644
index 0000000..dfdbc72
--- /dev/null
+++ b/test/fuzz-input/gfm.md
@@ -0,0 +1,10 @@
+* [ ] unchecked
+* [x] checked
+
+ A | B | C
+---|--:|:-:
+aaa|bbb|ccc
+
+~del~ ~~del~~
+
+http://example.com www.example.com doe@example.com
diff --git a/test/fuzz-input/latex-math.md b/test/fuzz-input/latex-math.md
new file mode 100644
index 0000000..d17af34
--- /dev/null
+++ b/test/fuzz-input/latex-math.md
@@ -0,0 +1 @@
+$a^2+b^2=c^2$ $$a^2+b^2=c^2$$
diff --git a/test/fuzz-input/wiki.md b/test/fuzz-input/wiki.md
new file mode 100644
index 0000000..a423974
--- /dev/null
+++ b/test/fuzz-input/wiki.md
@@ -0,0 +1 @@
+[[wiki]] [[wiki|label]]
-- 
cgit v1.2.3