(self, c: str)
| 186 | return outtext |
| 187 | |
| 188 | def handle_charref(self, c: str) -> None: |
| 189 | self.handle_data(self.charref(c), True) |
| 190 | |
| 191 | def handle_entityref(self, c: str) -> None: |
| 192 | ref = self.entityref(c) |
nothing calls this directly
no test coverage detected