Parcourir la source

test: add test for nested gh codeblocks

Estevao Soares dos Santos il y a 8 ans
Parent
commit
dbf876b6cb
2 fichiers modifiés avec 17 ajouts et 0 suppressions
  1. 8 0
      test/cases/nested-gh-codeblocks.html
  2. 9 0
      test/cases/nested-gh-codeblocks.md

+ 8 - 0
test/cases/nested-gh-codeblocks.html

@@ -0,0 +1,8 @@
+<pre><code>1. some code idented 4 spaces
+
+    ```
+    var foobar = 'foo';
+    ```
+
+2. another line
+</code></pre>

+ 9 - 0
test/cases/nested-gh-codeblocks.md

@@ -0,0 +1,9 @@
+```
+1. some code idented 4 spaces
+
+    ```
+    var foobar = 'foo';
+    ```
+
+2. another line
+```