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 | |
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.
-rw-r--r-- | markdown/inlinepatterns.py | 2 | ||||
-rw-r--r-- | tests/misc/uche.html | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/markdown/inlinepatterns.py b/markdown/inlinepatterns.py index d666d6d..89fa3b2 100644 --- a/markdown/inlinepatterns.py +++ b/markdown/inlinepatterns.py @@ -104,7 +104,7 @@ ATTR_RE = re.compile("\{@([^\}]*)=([^\}]*)}") # {@id=123} def handleAttributes(text, parent): """Set values of an element based on attribute definitions ({@id=123}).""" def attributeCallback(match): - parent.set(match.group(1), match.group(2)) + parent.set(match.group(1), match.group(2).replace('\n', ' ')) return ATTR_RE.sub(attributeCallback, text) 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 |