diff --git a/Parsedown.php b/Parsedown.php index ea1c01a..b087741 100755 --- a/Parsedown.php +++ b/Parsedown.php @@ -593,6 +593,8 @@ class Parsedown if (isset($Block['interrupted'])) { $Block['element']['text'] []= ''; + + unset($Block['interrupted']); } $Block['element']['text'] []= $matches[1]; diff --git a/test/data/lazy_blockquote.html b/test/data/lazy_blockquote.html index c368a0b..0a2a2aa 100644 --- a/test/data/lazy_blockquote.html +++ b/test/data/lazy_blockquote.html @@ -1,4 +1,6 @@

quote the rest of it

+

another paragraph +the rest of it

\ No newline at end of file diff --git a/test/data/lazy_blockquote.md b/test/data/lazy_blockquote.md index 8490c22..48f645f 100644 --- a/test/data/lazy_blockquote.md +++ b/test/data/lazy_blockquote.md @@ -1,2 +1,5 @@ > quote +the rest of it + +> another paragraph the rest of it \ No newline at end of file