(html)
| 795 | return re.sub(p, "", string) |
| 796 | |
| 797 | def strip_javascript(html): |
| 798 | return strip_between("<script.*?>", "</script>", html) |
| 799 | def strip_inline_css(html): |
| 800 | return strip_between("<style.*?>", "</style>", html) |
| 801 | def strip_comments(html): |
no test coverage detected
searching dependent graphs…