Fix minor things that broke in last commit

This commit is contained in:
2023-01-23 00:18:48 +01:00
parent 160cfdc401
commit 5a6482b583
6 changed files with 40 additions and 22 deletions

@ -53,7 +53,7 @@ def convert_html_to_md(html: str) -> str:
tag.replace_with(tag.text)
# Remove all leading and trailing whitespace
soup_text = soup.text
soup_text: str = soup.text
return soup_text.strip()