##// END OF EJS Templates
Enable all Markdown Extra in Python markdown library.
xpol -
r3164:01cb7df1 beta
parent child Browse files
Show More
@@ -98,7 +98,7 b' class MarkupRenderer(object):'
98 98 source = safe_unicode(source)
99 99 try:
100 100 import markdown as __markdown
101 return __markdown.markdown(source, ['codehilite', 'tables'])
101 return __markdown.markdown(source, ['codehilite', 'extra'])
102 102 except ImportError:
103 103 log.warning('Install markdown to use this function')
104 104 return cls.plain(source)
General Comments 0
You need to be logged in to leave comments. Login now