fix: Internal letter hyperlinks cannot be redirected

pull/14138/head
feng 2024-09-13 11:03:53 +08:00
parent 1d280599ae
commit c3798bfa95
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ def is_macos():
def convert_html_to_markdown(html_str):
h = html2text.HTML2Text()
h.body_width = 0
h.ignore_links = True
h.ignore_links = False
markdown = h.handle(html_str)
markdown = markdown.replace('\n\n', '\n')