Skip to content

Commit 80616d8

Browse files
committed
Stop XML escaping the body of a link.
This was added as part of 000343d, but isn't necessary for that change, and causes links like [`example`] to render as "<code&gt...". Fixes trentm#259
1 parent a1c2850 commit 80616d8

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

lib/markdown2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ def _do_links(self, text):
14081408
result_head = '<a href="#"%s>' % (title_str)
14091409
else:
14101410
result_head = '<a href="%s"%s>' % (_html_escape_url(url, safe_mode=self.safe_mode), title_str)
1411-
result = '%s%s</a>' % (result_head, _xml_escape_attr(link_text))
1411+
result = '%s%s</a>' % (result_head, link_text)
14121412
if "smarty-pants" in self.extras:
14131413
result = result.replace('"', self._escape_table['"'])
14141414
# <img> allowed from curr_pos on, <a> from

test/tm-cases/inline_links.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<p>an inline <a href="/url/">link</a></p>
22

3-
<p>a <a href="/url/" title="title">link &quot;with&quot; title</a></p>
3+
<p>a <a href="/url/" title="title">link "with" title</a></p>
4+
5+
<p>an inline <a href="/url/">link with <code>code</code></a></p>
46

57
<p>an inline <img src="/url/" alt="image link" /></p>
68

test/tm-cases/inline_links.text

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ an inline [link](/url/)
22

33
a [link "with" title](/url/ "title")
44

5+
an inline [link with `code`](/url/)
6+
57
an inline ![image link](/url/)
68

79
an ![image "with" title](/url/ "title")

test/tm-cases/long_link.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<h1>works</h1>
22

3-
<p><a href="http://tuxdeluxe.org/node/287">wever installation of Kunnafonix was resisted by many of the local organizations they had to work with The local &quot;computer person&quot; resented a solution that was so easy to use that it undermined the power and prestige they received by being the person to consult when a Windows computer had problems</a></p>
3+
<p><a href="http://tuxdeluxe.org/node/287">wever installation of Kunnafonix was resisted by many of the local organizations they had to work with The local "computer person" resented a solution that was so easy to use that it undermined the power and prestige they received by being the person to consult when a Windows computer had problems</a></p>
44

55
<h1>issue 24: these fail</h1>
66

77
<p><a href="http://tuxdeluxe.org/node/287">wever installation of Kunnafonix was resisted by many of the local organizations they had to
8-
work with The local &quot;computer person&quot; resented a solution that was so easy to use that it undermined
8+
work with The local "computer person" resented a solution that was so easy to use that it undermined
99
the power and prestige they received by being the person to consult when a Windows computer had
1010
problems</a></p>
1111

12-
<p><a href="http://tuxdeluxe.org/node/287">However installation of Kunnafonix was resisted by many of the local organizations they had to work with The local &quot;computer person&quot; resented a solution that was so easy to use that it undermined the power and prestige they received by being the person to consult when a Windows computer had problems</a></p>
12+
<p><a href="http://tuxdeluxe.org/node/287">However installation of Kunnafonix was resisted by many of the local organizations they had to work with The local "computer person" resented a solution that was so easy to use that it undermined the power and prestige they received by being the person to consult when a Windows computer had problems</a></p>

0 commit comments

Comments
 (0)