(self, name: str)
| 292 | self.handle_empty_tag('&#{};'.format(name), is_block=False) |
| 293 | |
| 294 | def handle_entityref(self, name: str): |
| 295 | self.handle_empty_tag('&{};'.format(name), is_block=False) |
| 296 | |
| 297 | def handle_comment(self, data: str): |
| 298 | # Check if the comment is unclosed, if so, we need to override position |
nothing calls this directly
no test coverage detected