summaryrefslogtreecommitdiff
path: root/tests/test_syntax/inline/test_links.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_syntax/inline/test_links.py')
-rw-r--r--tests/test_syntax/inline/test_links.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_syntax/inline/test_links.py b/tests/test_syntax/inline/test_links.py
index 3e8593f..e147c82 100644
--- a/tests/test_syntax/inline/test_links.py
+++ b/tests/test_syntax/inline/test_links.py
@@ -130,3 +130,7 @@ class TestAdvancedLinks(TestCase):
'[title](http://example.com/?a=1&b=2)',
'<p><a href="http://example.com/?a=1&amp;b=2">title</a></p>'
)
+ self.assertMarkdownRenders(
+ '[title](http://example.com/?a=1&#x26;b=2)',
+ '<p><a href="http://example.com/?a=1&#x26;b=2">title</a></p>'
+ )