matrix-ops-bot/ops_bot/util/markdown.py

39 lines
1.2 KiB
Python
Raw Permalink Normal View History

2022-12-01 14:20:37 +00:00
# # Copyright (c) 2022 Tulir Asokan
2022-12-01 13:47:27 +00:00
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
2022-12-01 14:20:37 +00:00
from typing import Any
2022-12-01 13:47:27 +00:00
import commonmark
class HtmlEscapingRenderer(commonmark.HtmlRenderer):
def __init__(self, allow_html: bool = False):
super().__init__()
self.allow_html = allow_html
2022-12-01 14:20:37 +00:00
def lit(self, s: str) -> None:
2022-12-01 13:47:27 +00:00
if self.allow_html:
return super().lit(s)
return super().lit(s.replace("<", "&lt;").replace(">", "&gt;"))
2022-12-01 14:20:37 +00:00
def image(self, node: Any, entering: Any) -> None:
2022-12-01 13:47:27 +00:00
prev = self.allow_html
self.allow_html = True
super().image(node, entering)
self.allow_html = prev
md_parser = commonmark.Parser()
yes_html_renderer = commonmark.HtmlRenderer()
no_html_renderer = HtmlEscapingRenderer()
def render(message: str, allow_html: bool = False) -> str:
2022-12-01 14:20:37 +00:00
parsed = md_parser.parse(message) # type: ignore
2022-12-01 13:47:27 +00:00
if allow_html:
2022-12-01 14:20:37 +00:00
return yes_html_renderer.render(parsed) # type: ignore
2022-12-01 13:47:27 +00:00
else:
2022-12-01 14:20:37 +00:00
return no_html_renderer.render(parsed) # type: ignore