diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-12-08 11:44:36 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-12-08 11:44:36 -0500 |
commit | af38181495451e303364fab833d04c702ab05abe (patch) | |
tree | 1adcdd7cef7aa87930bb37e00f5313e3464e04fc /tests | |
parent | 64523ed5dc8a8da889b93ca9e6dae8ae6ffe5d91 (diff) | |
download | markdown-af38181495451e303364fab833d04c702ab05abe.tar.gz markdown-af38181495451e303364fab833d04c702ab05abe.tar.bz2 markdown-af38181495451e303364fab833d04c702ab05abe.zip |
Fixed attribute creation to remove newlines and associated misc/uche test. Apparently differant versions of ElementTree encode line breaks in attributes differantly. Therefore, we just remove any such linebreaks as they are insignificant anyway.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/misc/uche.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/misc/uche.html b/tests/misc/uche.html index 99531ce..e62329d 100644 --- a/tests/misc/uche.html +++ b/tests/misc/uche.html @@ -1,4 +1,3 @@ <p><img alt="asif" src="http://fourthought.com/images/ftlogo.png" title="Fourthought logo" /></p> -<p><a href="http://fourthought.com/"><img alt="" src="http://fourthought.com/images/ftlogo.png" style="float: left; margin: 10px; border: -none;" title="Fourthought logo" /></a></p> +<p><a href="http://fourthought.com/"><img alt="" src="http://fourthought.com/images/ftlogo.png" style="float: left; margin: 10px; border: none;" title="Fourthought logo" /></a></p> <p><a href="http://link.com/"><img alt="text" src="x" /></a></p>
\ No newline at end of file |