aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/tests/test.md
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/tests/test.md')
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/tests/test.md53
1 files changed, 53 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/tests/test.md b/src-qt5/desktop-utils/lumina-textedit/tests/test.md
new file mode 100644
index 00000000..fc6bc78b
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-textedit/tests/test.md
@@ -0,0 +1,53 @@
+
+# Header
+
+## Header 2
+
+## Header 3
+
+*Italic*
+
+**Bold**
+***Bold and Italic***
+***a***
+
+_Italic_
+__Bold__
+___Bold and Italic___
+___a___
+[link](link)
+
+Some [link](link) within a text block.
+
+Some [text](link) within a text block with another [Link](Link) in it.
+
+Horizontal Rules
+---
+***
+___
+* * *
+_ _ _
+* * *
+
+some `in-line code block` test in `a line`.
+
+some
+```
+multi-line
+code block
+```
+outside block
+
+quote
+
+> > I like cheese > whine.
+> Is what he said
+
+* Bullet List
+ * Indented bullet list
+ * indented 2 bullet list
+
+- or this bullet
+
+1. or this numbered list
+2. second item
bgstack15