Escape each HTML ref individually.
This commit is contained in:
parent
2915e5d288
commit
c6e34dd0b1
2 changed files with 15 additions and 5 deletions
|
|
@ -31,3 +31,11 @@ def test_html_numeric_reference_parsing(entitydef):
|
|||
num = entitydef[2]
|
||||
parser = MatrixHtmlParser()
|
||||
assert parser.unescape('&#{};'.format(num)) == character
|
||||
|
||||
|
||||
def test_parsing_of_escaped_brackets():
|
||||
p = MatrixHtmlParser()
|
||||
p.feed('<pre><code><faketag></code></pre>')
|
||||
s = p.get_substrings()
|
||||
print(s)
|
||||
assert s[0].text == '<faketag>' and len(s) == 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue