Ver Fonte

Updated nested blockquote test case to proper markdown syntax

Titus há 13 anos atrás
pai
commit
a3a07eaac6
2 ficheiros alterados com 3 adições e 1 exclusões
  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.