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/multi-test.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/multi-test.html')
-rw-r--r-- | tests/misc/multi-test.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/misc/multi-test.html b/tests/misc/multi-test.html index fbb37f3..1fc7bdb 100644 --- a/tests/misc/multi-test.html +++ b/tests/misc/multi-test.html @@ -3,21 +3,22 @@ <p>Blah blah blah <a href="http://www.slashdot.org">http://www.slashdot.org</a> </p> <ul> -<li>Basic list</li> -<li>Basic list 2</li> + <li>Basic list</li> + <li>Basic list 2</li> </ul> <p>addss</p> <ul> -<li>Lazy list</li> + <li>Lazy list</li> </ul> -<p>An <a href="http://example.com" title="Title">example</a>(oops)</p> +<p>An <a href="http://example.com" title="Title">example</a> (oops)</p> <p>Now, let's use a footnote[^1]. Not bad, eh? Let's continue.</p> -<p>[^1]: Here is the text of the footnote +<p> [^1]: Here is the text of the footnote continued on several lines. some more of the footnote, etc.</p> <pre> -<code>Actually, another paragraph too. + <code>Actually, another paragraph too. </code> </pre> <p>And then there is a little bit of text.</p> + |