瀏覽代碼

Updated nested blockquote test case to proper markdown syntax

Titus 13 年之前
父節點
當前提交
a3a07eaac6
共有 2 個文件被更改,包括 3 次插入1 次删除
  1. 1 1
      test/cases/nested-blockquote.html
  2. 2 0
      test/cases/nested-blockquote.md

+ 1 - 1
test/cases/nested-blockquote.html

@@ -2,7 +2,7 @@
 	<p>This is a multi line blockquote test</p>
 
     <blockquote>
-        <p>And nesting!
+        <p>And nesting!</p>
     </blockquote>
 
 	<p>With more than one line.</p>

+ 2 - 0
test/cases/nested-blockquote.md

@@ -1,4 +1,6 @@
 
   > This is a multi line blockquote test
+  >
   > > And nesting!
+  >
   > With more than one line.