summaryrefslogtreecommitdiffstats
path: root/tests/exampleSiteWithImage/content/commonmark.md
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exampleSiteWithImage/content/commonmark.md')
-rw-r--r--tests/exampleSiteWithImage/content/commonmark.md61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/exampleSiteWithImage/content/commonmark.md b/tests/exampleSiteWithImage/content/commonmark.md
new file mode 100644
index 0000000..cc25766
--- /dev/null
+++ b/tests/exampleSiteWithImage/content/commonmark.md
@@ -0,0 +1,61 @@
++++
+title = "CommonMark"
++++
+
+*Italic*
+
+_Italic_
+
+**Bold**
+
+__Bold__
+
+# Heading 1
+
+## Heading 2
+
+### Heading 3
+
+#### Heading 4
+
+##### Heading 5
+
+###### Heading 6
+
+[Link](http://a.com)
+
+![Image](https://dummyimage.com/mediumrectangle)
+
+> Blockquote
+
+* List
+* List
+* List
+
+- List
+- List
+- List
+
+1. One
+2. Two
+3. Three
+
+1) One
+2) Two
+3) Three
+
+---
+
+***
+
+`Inline code` with backticks
+
+```
+# code block
+print '3 backticks or'
+print 'indent 4 spaces'
+```
+
+ # code block
+ print '3 backticks or'
+ print 'indent 4 spaces'