(self, html)
| 675 | self.handle_endtag(tag) |
| 676 | |
| 677 | def clean(self, html): |
| 678 | html = decode_utf8(html) |
| 679 | html = html.replace("/>", " />") |
| 680 | html = html.replace(" />", " />") |
| 681 | html = html.replace("<!", "<!") |
| 682 | html = html.replace("<!DOCTYPE", "<!DOCTYPE") |
| 683 | html = html.replace("<!doctype", "<!doctype") |
| 684 | html = html.replace("<!--", "<!--") |
| 685 | return html |
| 686 | |
| 687 | |
| 688 | def parse_declaration(self, i): |
no test coverage detected