summaryrefslogtreecommitdiffstats
path: root/t/markdown
diff options
context:
space:
mode:
Diffstat (limited to 't/markdown')
-rw-r--r--t/markdown/embedded-blockquote.md9
-rw-r--r--t/markdown/embedded-underscore.md19
2 files changed, 28 insertions, 0 deletions
diff --git a/t/markdown/embedded-blockquote.md b/t/markdown/embedded-blockquote.md
new file mode 100644
index 000000000..6c34434e9
--- /dev/null
+++ b/t/markdown/embedded-blockquote.md
@@ -0,0 +1,9 @@
+```
+this is a block
+> with an embedded blockquote
+```
+
+---
+
+<pre><code>this is a block
+&gt; with an embedded blockquote</code></pre>
diff --git a/t/markdown/embedded-underscore.md b/t/markdown/embedded-underscore.md
new file mode 100644
index 000000000..15093cccf
--- /dev/null
+++ b/t/markdown/embedded-underscore.md
@@ -0,0 +1,19 @@
+<lib>_foo_bar.c
+<lib>_foo_bar_baz.c
+<prefix>_bar.c and <prefix>_bif.c
+hello_bar.c and there_bif.c
+
+var this__is_a_variable__ = "";
+
+__this is not__
+
+---
+
+<p>&lt;lib&gt;_foo_bar.c<br>
+&lt;lib&gt;_foo_bar_baz.c<br>
+&lt;prefix&gt;_bar.c and &lt;prefix&gt;_bif.c<br>
+hello_bar.c and there_bif.c</p>
+
+<p>var this__is_a_variable__ = &quot;&quot;;</p>
+
+<p><strong>this is not</strong></p>