From b00951e626fd93abaae8e6c4ccddb239789798b2 Mon Sep 17 00:00:00 2001 From: Antoine Goutenoir Date: Fri, 8 Nov 2019 09:33:46 +0100 Subject: [PATCH] Enable markdown extra. --- flaskr/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flaskr/__init__.py b/flaskr/__init__.py index 83bd7b7..6344915 100755 --- a/flaskr/__init__.py +++ b/flaskr/__init__.py @@ -83,7 +83,7 @@ def create_app(object_name): # Markdown jinja2 filter @app.template_filter('markdown') def markdown_filter(text): - return markdown(text) + return markdown(text, extensions=['extra']) # Authentication Gate for the Admin @app.before_first_request -- libgit2 0.21.2