summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/extensions/blocks/markdown/test/fixtures/source.js')
-rw-r--r--plugins/jetpack/extensions/blocks/markdown/test/fixtures/source.js63
1 files changed, 63 insertions, 0 deletions
diff --git a/plugins/jetpack/extensions/blocks/markdown/test/fixtures/source.js b/plugins/jetpack/extensions/blocks/markdown/test/fixtures/source.js
new file mode 100644
index 00000000..0c24e6ba
--- /dev/null
+++ b/plugins/jetpack/extensions/blocks/markdown/test/fixtures/source.js
@@ -0,0 +1,63 @@
+export const source = `
+# Heading
+
+## 2nd Heading
+
+- List 1
+- List 1
+
+* List 2
+* List 2
+
++ List 3
++ List 3
+
+1. Red
+2. Green
+3. Blue
+
+* A list item.
+
+ With multiple paragraphs.
+
+* Another item in the list.
+
+_em_
+*em*
+**strong**
+__strong__
+***em strong***
+
+\\\*Literal asterisks\\\*
+
+Link to [WordPress](https://wordpress.com) and <https://jetpack.com/>
+
+email me: <address@example.com>
+
+Inline \`code\` here.
+
+\`\`\`
+Block of code with backticks.
+\`\`\`
+
+ Block of code prefixed by four spaces
+
+> a blockquote.
+>
+> 2nd paragraph in the blockquote.
+>
+> ## H2 in a blockquote
+
+A bunch of horizontal rules:
+
+* * *
+
+***
+
+*****
+
+- - -
+
+---------------------------------------
+
+👋`;