We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49f04c6 commit 440d8b5Copy full SHA for 440d8b5
html_sanitizer/tests.py
@@ -74,6 +74,8 @@ def test_01_sanitize(self):
74
# ...but breaks without any additional content are still removed
75
("<a><br /> </a>", "<a> </a>"),
76
("<p>blab<br hello='world' />blub<p>", "<p>blab<br>blub</p>"),
77
+ ("<p>A & B</p>", "<p>A & B</p>"),
78
+ ("<p>A < B</p>", "<p>A < B</p>"),
79
]
80
81
self.run_tests(entries)
0 commit comments