This commit is contained in:
root 2022-04-14 16:30:32 +08:00
parent 44e942827e
commit 92aa12c131
28 changed files with 388 additions and 195 deletions

View file

@ -29,7 +29,7 @@ import typing
import urllib.parse
import jinja2
from flask.helpers import url_for
import mistletoe
from markdown_it import MarkdownIt
from .. import get_setting
from ..compat import cached_property
@ -71,13 +71,17 @@ class InfoPage:
@cached_property
def html(self):
"""Render Markdown (CommonMark_) to HTML by using mistletoe_.
"""Render Markdown (CommonMark_) to HTML by using markdown-it-py_.
.. _CommonMark: https://commonmark.org/
.. _mistletoe: https://github.com/miyuchina/mistletoe
.. _markdown-it-py: https://github.com/executablebooks/markdown-it-py
"""
return mistletoe.markdown(self.content)
return MarkdownIt(
"commonmark", {"typographer": True}
).enable(
["replacements", "smartquotes"]
).render(self.content)
def get_ctx(self): # pylint: disable=no-self-use
"""Jinja context to render :py:obj:`InfoPage.content`"""