166 Titles from Presearch shows domain + title without spacing, and HTML
167 This function removes these 2 issues.
168 Transforming "translate.google.co.in<em>Google</em> Translate" into "Google Translate"
170 parsed_url = urlparse(url)
171 domain = parsed_url.netloc
172 title = html_to_text(title)
176 title.startswith(domain)
177 and len(title) > len(domain)
178 and not title.startswith(domain +
"/")
179 and not title.startswith(domain +
" ")
181 title = title.removeprefix(domain)