(self, data: str)
| 299 | self.handle_empty_tag('<!--{}-->'.format(data), is_block=True) |
| 300 | |
| 301 | def handle_decl(self, data: str): |
| 302 | self.handle_empty_tag('<!{}>'.format(data), is_block=True) |
| 303 | |
| 304 | def handle_pi(self, data: str): |
| 305 | self.handle_empty_tag('<?{}?>'.format(data), is_block=True) |
nothing calls this directly
no test coverage detected