How to achieve the effect of BeautifulSoup get_text? ``` def extract_content(html: str) -> str: soup = BeautifulSoup(html, "html.parser") text = soup.get_text(separator=" ", strip=True) return text