diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-12-07 12:30:27 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-12-07 12:30:27 -0500 |
commit | 64523ed5dc8a8da889b93ca9e6dae8ae6ffe5d91 (patch) | |
tree | d4c12314ea6a486f37af14cab5751b181d45b8b7 | |
parent | 551067dabd1e750a2fb7e6b7cc42aab92990b6ab (diff) | |
download | markdown-64523ed5dc8a8da889b93ca9e6dae8ae6ffe5d91.tar.gz markdown-64523ed5dc8a8da889b93ca9e6dae8ae6ffe5d91.tar.bz2 markdown-64523ed5dc8a8da889b93ca9e6dae8ae6ffe5d91.zip |
Fixed para-with-hr test. The code was working correctly, but the test was wrong.
-rw-r--r-- | tests/misc/para-with-hr.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/misc/para-with-hr.html b/tests/misc/para-with-hr.html index c4eb4db..8569fec 100644 --- a/tests/misc/para-with-hr.html +++ b/tests/misc/para-with-hr.html @@ -1,2 +1,3 @@ -<p>Here is a paragraph, followed by a horizontal rule.<hr /> -Followed by another paragraph.</p> +<p>Here is a paragraph, followed by a horizontal rule.</p> +<hr /> +<p>Followed by another paragraph.</p>
\ No newline at end of file |