core.markdown ============= .. py:module:: core.markdown Attributes ---------- .. autoapisummary:: core.markdown.RENDERER_INSTANCES Classes ------- .. autoapisummary:: core.markdown.HTMLRendererWithoutInlineHtml Functions --------- .. autoapisummary:: core.markdown.render_untrusted_markdown Module Contents --------------- .. py:data:: RENDERER_INSTANCES .. py:class:: HTMLRendererWithoutInlineHtml(*extras, html_escape_double_quotes=False, html_escape_single_quotes=False, process_html_tokens=True, **kwargs) Bases: :py:obj:`mistletoe.HtmlRenderer` HTML renderer class. See mistletoe.base_renderer module for more info. .. py:method:: render_html_block(token: mistletoe.span_token.HTMLBlock) -> str :staticmethod: .. py:method:: render_html_span(token: mistletoe.span_token.HTMLSpan) -> str :staticmethod: .. py:function:: render_untrusted_markdown(markdown: str, cls: type[mistletoe.HtmlRenderer] = HTMLRendererWithoutInlineHtml) -> markupsafe.Markup