소스 검색

test: add test for nested gh codeblocks

Estevao Soares dos Santos 8 년 전
부모
커밋
dbf876b6cb
2개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  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
+```