diff options
-rw-r--r-- | apioforum/mdrender.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apioforum/mdrender.py b/apioforum/mdrender.py index 7dbbf6b..4e3a891 100644 --- a/apioforum/mdrender.py +++ b/apioforum/mdrender.py @@ -11,6 +11,7 @@ allowed_tags = [ 'h6', 'pre', 'del', + 'ins', 'mark', 'img', 'marquee', @@ -38,6 +39,7 @@ cleaner = bleach.sanitizer.Cleaner(tags=allowed_tags,attributes=allowed_attribut import markdown md = markdown.Markdown(extensions=[ 'pymdownx.tilde', + 'pymdownx.caret', 'fenced_code', 'tables', 'pymdownx.details', |