1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/utils/markdown.py

20 lines
376 B
Python
Raw Normal View History

2021-08-22 20:10:29 +02:00
import bleach
import markdown
from bleach_allowlist import markdown_tags, markdown_attrs
def md_to_html(md: str) -> str:
html = markdown.markdown(
md,
output_format="html",
extensions=[
"nl2br",
]
)
html = bleach.clean(
html,
tags=markdown_tags,
attributes=markdown_attrs
)
return html