id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
10763	Add support for tables	holmberg.anders+trachacks@gmail.com	dwclifton	= Description =\r\n\r\nThe python markdown component has support for certain extensions, e.g. tables. The tables extensions seems to play nicely with the HTML rendering in Trac and it is easy to add it. \r\n\r\n= Patch =\r\n\r\n{{{\r\nIndex: Markdown/macro.py\r\n===================================================================\r\n--- Markdown/macro.py_(revision 12515)\r\n+++ Markdown/macro.py_(working copy)\r\n@@ -54,7 +54,7 @@\r\n             \r\n         try:\r\n             from markdown import markdown\r\n-            return markdown(re.sub(LINK, convert, content))\r\n+            return markdown(re.sub(LINK, convert, content), extensions=['tables'])\r\n         except ImportError:\r\n             msg = 'Error importing Python Markdown, install it from '\r\n             url = 'http://www.freewisdom.org/projects/python-markdown/'\r\n}}}	enhancement	new	normal	MarkdownMacro	normal				
