diff options
Diffstat (limited to 'vendor/michelf/php-markdown/test/resources/markdown.mdtest/Nested blockquotes.xhtml')
-rw-r--r-- | vendor/michelf/php-markdown/test/resources/markdown.mdtest/Nested blockquotes.xhtml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/michelf/php-markdown/test/resources/markdown.mdtest/Nested blockquotes.xhtml b/vendor/michelf/php-markdown/test/resources/markdown.mdtest/Nested blockquotes.xhtml new file mode 100644 index 000000000..d8ec7f8e0 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/markdown.mdtest/Nested blockquotes.xhtml @@ -0,0 +1,9 @@ +<blockquote> + <p>foo</p> + + <blockquote> + <p>bar</p> + </blockquote> + + <p>foo</p> +</blockquote> |