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

33 lines
693 B
Python
Raw Normal View History

import re
2021-08-22 20:10:29 +02:00
import bleach
import markdown
from bleach_allowlist import markdown_tags, markdown_attrs
2021-12-09 15:07:22 +01:00
custom_allowed_tags = ["del", "ins"]
2021-08-22 20:10:29 +02:00
def md_to_html(md: str) -> str:
2021-09-26 19:02:25 +02:00
md = autolink(md)
2021-08-22 20:10:29 +02:00
html = markdown.markdown(
md,
output_format="html",
extensions=[
"nl2br",
]
)
html = bleach.clean(
html,
2021-12-09 15:07:22 +01:00
tags=markdown_tags + custom_allowed_tags,
2021-08-22 20:10:29 +02:00
attributes=markdown_attrs
)
return html
2021-09-26 19:02:25 +02:00
def autolink(md: str) -> str:
from utils.urls import name2url
for name, url in name2url().items():
regex = r"\bWORD\b".replace("WORD", name)
md = re.sub(regex, f"[{name}]({url})", md)
2021-09-26 19:02:25 +02:00
return md