def convert_html_to_md()

in seed/util/preprocess.py [0:0]


def convert_html_to_md(html):
    # Convert html to markdown
    try:
        text = markdownify(html)    
    except Exception as e:
        text = clean_html(html)
    return text