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

56 lines
1.2 KiB
Python

import re
from html.parser import HTMLParser
import bleach
import markdown
from bleach_allowlist import markdown_tags, markdown_attrs
custom_allowed_tags = ["del", "ins"]
def md_to_html(md: str, replacements=None) -> str:
md = autolink(md, replacements=replacements)
html = markdown.markdown(
md,
output_format="html",
extensions=[
"nl2br",
]
)
html = bleach.clean(
html,
tags=markdown_tags + custom_allowed_tags,
attributes=markdown_attrs
)
return html
def autolink(md: str, replacements=None) -> str:
if replacements is None:
from utils.urls import name2url
replacements = name2url()
links = {}
i = 0
for name, url in replacements.items():
regex = r"\bWORD\b".replace("WORD", name)
placeholder = f"SOME{i}LINK"
md = re.sub(regex, placeholder, md)
links[placeholder] = f"[{name}]({url})"
i += 1
for placeholder, value in links.items():
md = md.replace(placeholder, value)
return md
class HTMLFilter(HTMLParser):
text = ""
def handle_data(self, data):
self.text += data
def html_to_text(html: str) -> str:
f = HTMLFilter()
f.feed(html)
return f.text