import html2text as ht
text_maker = ht.HTML2Text()
# 读取 html 格式文件
with open('./*.html', 'r', encoding='UTF-8') as f:
htmlpage = f.read()
# 解决 html 格式文件中的内容
text = text_maker.handle(htmlpage)
# 写入解决后的内容
with open('*.md', 'w') as f:
f.write(text)