html格式转md格式
# 模块html2text
pip install html2text/pip3 install html2text

测试:

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)

  

相关文章:

  • 2022-12-23
  • 2022-02-13
  • 2021-12-20
  • 2021-08-07
  • 2022-01-14
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-27
  • 2021-06-27
  • 2022-12-23
  • 2022-02-04
  • 2022-12-23
相关资源
相似解决方案