diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-11-13 15:53:42 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-11-13 23:27:55 -0500 |
commit | 64f5510aeb05d8912bb9f60ad247c815c2b90990 (patch) | |
tree | b4864359a9f63023148dd6a7c5495e8c70a1223c /tests/misc/blockquote-below-paragraph.html | |
parent | b02b01dbf51c1409211703a4aa32aa6cff9164d7 (diff) | |
download | markdown-64f5510aeb05d8912bb9f60ad247c815c2b90990.tar.gz markdown-64f5510aeb05d8912bb9f60ad247c815c2b90990.tar.bz2 markdown-64f5510aeb05d8912bb9f60ad247c815c2b90990.zip |
Fixed BlockquoteProcessor to acknowledge blocks in which the blockquote starts after the first line. Also updated coresponding test as it had an error and added more detail. All core tests pass now. On to extensions.
Diffstat (limited to 'tests/misc/blockquote-below-paragraph.html')
-rw-r--r-- | tests/misc/blockquote-below-paragraph.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/misc/blockquote-below-paragraph.html b/tests/misc/blockquote-below-paragraph.html index c6f622e..20ffb66 100644 --- a/tests/misc/blockquote-below-paragraph.html +++ b/tests/misc/blockquote-below-paragraph.html @@ -2,4 +2,12 @@ <blockquote> <p>Block quote Yep</p> +</blockquote> +<p>Paragraph +>no space +>Nope</p> +<p>Paragraph one</p> +<blockquote> +<p>blockquote +More blockquote.</p> </blockquote>
\ No newline at end of file |