diff options
author | Gerry LaMontagne <gjlama94@gmail.com> | 2010-03-22 09:15:38 -0400 |
---|---|---|
committer | Gerry LaMontagne <gjlama94@gmail.com> | 2010-03-22 09:15:38 -0400 |
commit | ced8f58b78b02a58e20f6863085ef9c7d82182e0 (patch) | |
tree | 8494ea172552dbdc40ec5cbb845cedfd2c1c414c /tests | |
parent | 9a31684b9a683fe9b0d2871649b379fadfb60ade (diff) | |
download | markdown-ced8f58b78b02a58e20f6863085ef9c7d82182e0.tar.gz markdown-ced8f58b78b02a58e20f6863085ef9c7d82182e0.tar.bz2 markdown-ced8f58b78b02a58e20f6863085ef9c7d82182e0.zip |
Fixed ticket 58. The first item of a looselist gets placed in p tags when
it has a sublist. Previously, the test suite erroneously passed this condition
because there was an error in the expected '.html' output file. The expected
output has been corrected as well.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/misc/some-test.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/misc/some-test.html b/tests/misc/some-test.html index a36d1ee..b78683f 100644 --- a/tests/misc/some-test.html +++ b/tests/misc/some-test.html @@ -24,8 +24,10 @@ </ul> <p>Markdown</p> <ul> -<li>Python - is ok<ul> +<li> +<p>Python + is ok</p> +<ul> <li>Therefore i am</li> </ul> </li> |