diff options
author | Rohan Jain <crodjer@gmail.com> | 2011-04-05 14:59:30 +0530 |
---|---|---|
committer | Rohan Jain <crodjer@gmail.com> | 2011-04-05 14:59:30 +0530 |
commit | c385e5fc0a9fe7517b4afdb5b3f9c174ae0766de (patch) | |
tree | f2652cb039e44d9f430e8509c3b1912937313970 /tests | |
parent | f1a2d3763115c41a4f0159e2f98aa76330cc17e5 (diff) | |
download | markdown-c385e5fc0a9fe7517b4afdb5b3f9c174ae0766de.tar.gz markdown-c385e5fc0a9fe7517b4afdb5b3f9c174ae0766de.tar.bz2 markdown-c385e5fc0a9fe7517b4afdb5b3f9c174ae0766de.zip |
fixed startindex reset in multiple ul
Now the startindex would be reset if continual unordered
lists are present (tests are passed).
Diffstat (limited to 'tests')
-rw-r--r-- | tests/misc/some-test.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/misc/some-test.html b/tests/misc/some-test.html index b78683f..92e7262 100644 --- a/tests/misc/some-test.html +++ b/tests/misc/some-test.html @@ -51,7 +51,7 @@ ok with a bunch of items</li> <li> <p>Mostly fruits</p> -<ol> +<ol start="3"> <li>Apple</li> <li>Pare</li> </ol> @@ -65,4 +65,4 @@ Another code example * Lists and similar stuff > Should be ignored -</code></pre>
\ No newline at end of file +</code></pre> |