Bladeren bron

Updated nested blockquote test case to proper markdown syntax

Titus 13 jaren geleden
bovenliggende
commit
a3a07eaac6
2 gewijzigde bestanden met toevoegingen van 3 en 1 verwijderingen
  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.