(html_string)
| 977 | return '\n'.join(lines) |
| 978 | |
| 979 | def format_html(html_string): |
| 980 | soup = BeautifulSoup(html_string, 'html.parser') |
| 981 | return soup.prettify() |
| 982 | |
| 983 | def normalize_url(href, base_url): |
| 984 | """Normalize URLs to ensure consistent format""" |
no outgoing calls
no test coverage detected
searching dependent graphs…