diff options
author | Artem Yunusov <nedrlab@gmail.com> | 2008-07-15 18:18:09 +0500 |
---|---|---|
committer | Artem Yunusov <nedrlab@gmail.com> | 2008-07-15 18:18:09 +0500 |
commit | 57539d69e8ee1e86bd14c9e51273e576b2e38438 (patch) | |
tree | a42044fb6dba4dfcc218013468a478d584e4a939 /tests/misc/funky-list.html | |
parent | a316ac49a6934221b24ec58a6a7dc4c3b30ae1e8 (diff) | |
download | markdown-57539d69e8ee1e86bd14c9e51273e576b2e38438.tar.gz markdown-57539d69e8ee1e86bd14c9e51273e576b2e38438.tar.bz2 markdown-57539d69e8ee1e86bd14c9e51273e576b2e38438.zip |
Output bug fixed(stripping text data at the end of processing in _processPlaceholders). Ticket #5 fixed.
Diffstat (limited to 'tests/misc/funky-list.html')
-rw-r--r-- | tests/misc/funky-list.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/misc/funky-list.html b/tests/misc/funky-list.html index a1aa372..f489d56 100644 --- a/tests/misc/funky-list.html +++ b/tests/misc/funky-list.html @@ -1,11 +1,12 @@ <ol> -<li>this starts a list <em>with</em>numbers</li> -<li>this will show as number "2"</li> -<li>this will show as number "3."</li> -<li>any number, +, -, or * will keep the list going.</li> + <li>this starts a list <em>with</em> numbers</li> + <li>this will show as number "2"</li> + <li>this will show as number "3."</li> + <li>any number, +, -, or * will keep the list going.</li> </ol> <p>aaaaaaaaaaaaaaa</p> <ul> -<li>now a normal list</li> -<li>and more</li> + <li>now a normal list</li> + <li>and more</li> </ul> + |