def fmt_hyperlink()

in analysis/render.py [0:0]


def fmt_hyperlink(text: str, url: str, tooltip: str = "") -> str:
    """Markdown to render a hyperlink"""
    tooltip = tooltip.replace("\n", "
").replace('"', """)
    return f'[{text}]({url} "{tooltip}")'