feat: Support markup inside headline titles.

This commit is contained in:
Sergio Martínez Portela 2022-08-28 14:08:54 +02:00
parent baaa7cbb86
commit 0e90abbb63
4 changed files with 39 additions and 3 deletions

View file

@ -59,7 +59,7 @@ class HL:
self.children = children
def assert_matches(self, test_case: unittest.TestCase, doc):
test_case.assertEqual(self.title, doc.title)
test_case.assertEqual(self.title, get_raw(doc.title))
# Check properties
if self.props is None: