PCv5/app/utils/markdown_extensions/escape_html.py

8 lines
211 B
Python

from markdown.extensions import Extension
class EscapeHtmlExtension(Extension):
def extendMarkdown(self, md):
md.preprocessors.deregister('html_block')
md.inlinePatterns.deregister('html')