diff --git a/apps/common/utils/common.py b/apps/common/utils/common.py index 4715906df..cb4794b66 100644 --- a/apps/common/utils/common.py +++ b/apps/common/utils/common.py @@ -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')