Commit b00951e626fd93abaae8e6c4ccddb239789798b2

Authored by Antoine Goutenoir
1 parent 446a932e
Exists in master

Enable markdown extra.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
flaskr/__init__.py
... ... @@ -83,7 +83,7 @@ def create_app(object_name):
83 83 # Markdown jinja2 filter
84 84 @app.template_filter('markdown')
85 85 def markdown_filter(text):
86   - return markdown(text)
  86 + return markdown(text, extensions=['extra'])
87 87  
88 88 # Authentication Gate for the Admin
89 89 @app.before_first_request
... ...