feat(core): Disable HTML tag rendering for markdown

ref: #284 closes #271
This commit is contained in:
2024-09-13 16:19:42 +09:30
parent 6e7e6587c2
commit 9cb3afeb30

View File

@ -49,7 +49,7 @@ class Markdown:
md = (
MarkdownIt(
config = "commonmark",
config = "js-default",
options_update={
'linkify': True,
'highlight': self.highlight_func,