""" convert_to_md module """ from urllib.parse import urlparse import html2text def convert_to_md(html: str, url: str = None) -> str: """ Convert HTML to Markdown. This function uses the html2text library to convert the provided HTML content to Markdown format. The function returns the converted Markdown content as a string. Args: html (str): The HTML content to be converted. Returns: str: The equivalent Markdown content. Example: >>> convert_to_md("
This is a paragraph.