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/underscores.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/underscores.html')
-rw-r--r-- | tests/misc/underscores.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/misc/underscores.html b/tests/misc/underscores.html index 43b488f..fa9e642 100644 --- a/tests/misc/underscores.html +++ b/tests/misc/underscores.html @@ -1,8 +1,9 @@ <p>THIS_SHOULD_STAY_AS_IS</p> <p>Here is some <em>emphasis</em>, ok?</p> -<p>Ok, at least <em>this</em>should work.</p> +<p>Ok, at least <em>this</em> should work.</p> <p>THIS<strong>SHOULD</strong>STAY</p> -<p>Here is some <strong>strong</strong>stuff.</p> +<p>Here is some <strong>strong</strong> stuff.</p> <p>THIS<strong> -<em>SHOULD</em> -</strong>STAY?</p>
\ No newline at end of file + <em>SHOULD</em> + </strong>STAY?</p> + |