diff options
-rw-r--r-- | markdown/extensions/extra.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/markdown/extensions/extra.py b/markdown/extensions/extra.py index 2c7915e..ba646f5 100644 --- a/markdown/extensions/extra.py +++ b/markdown/extensions/extra.py @@ -45,8 +45,9 @@ class ExtraExtension(markdown.Extension): def extendMarkdown(self, md, md_globals): """ Register extension instances. """ md.registerExtensions(extensions, self.config) - # Turn on processing of markdown text within raw html - md.preprocessors['html_block'].markdown_in_raw = True + if not md.safeMode: + # Turn on processing of markdown text within raw html + md.preprocessors['html_block'].markdown_in_raw = True def makeExtension(configs={}): return ExtraExtension(configs=dict(configs)) |