Changeset - 01cb7df198ae
[Not reviewed]
beta
0 1 0
xpol - 13 years ago 2013-01-15 04:39:31
xpolife@gmail.com
Enable all Markdown Extra in Python markdown library.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/markup_renderer.py
Show inline comments
 
@@ -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)
0 comments (0 inline, 0 general)