diff --git a/markwiki/renderer.py b/markwiki/renderer.py index d2b6203..5fb6d01 100644 --- a/markwiki/renderer.py +++ b/markwiki/renderer.py @@ -14,7 +14,8 @@ def render_markdown_txt(content): extensions = [wiki_link_extension, 'fenced_code', 'codehilite', - 'toc(anchorlink=True)'] + 'codehilite', 'abbr', 'attr_list', 'def_list', 'footnotes', + 'tables', 'smart_strong', 'toc(anchorlink=True)'] return markdown.markdown(content, safe_mode='escape', extensions=extensions, output_format='html5')