1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00
acronomy/acros/utils/conversion.py

16 lines
341 B
Python
Raw Normal View History

2020-06-01 20:26:00 +02:00
import markdown
2020-07-06 21:04:07 +02:00
import markdown_katex
2020-06-01 20:26:00 +02:00
def md_to_html(md: str) -> str:
html = markdown.markdown(
md,
2021-12-07 13:30:58 +01:00
output_format="html",
2020-06-01 20:26:00 +02:00
extensions=[
2020-06-02 18:05:58 +02:00
"nl2br",
2020-08-04 17:02:21 +02:00
markdown_katex.KatexExtension(insert_fonts_css=False, no_inline_svg=True),
2020-07-06 20:35:32 +02:00
"acros.utils.wikilinks"
2020-06-01 20:26:00 +02:00
]
)
return html