aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/lib/markup_renderer.py
diff options
context:
space:
mode:
Diffstat (limited to 'rhodecode/lib/markup_renderer.py')
-rw-r--r--rhodecode/lib/markup_renderer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/lib/markup_renderer.py b/rhodecode/lib/markup_renderer.py
index 52869a43..63c9a354 100644
--- a/rhodecode/lib/markup_renderer.py
+++ b/rhodecode/lib/markup_renderer.py
@@ -98,7 +98,7 @@ class MarkupRenderer(object):
source = safe_unicode(source)
try:
import markdown as __markdown
- return __markdown.markdown(source, ['codehilite', 'tables'])
+ return __markdown.markdown(source, ['codehilite', 'extra'])
except ImportError:
log.warning('Install markdown to use this function')
return cls.plain(source)