From b4362b3bf562bfb1b79bff9aee07feba32983e58 Mon Sep 17 00:00:00 2001 From: Artem Yunusov Date: Thu, 21 Aug 2008 23:54:21 +0500 Subject: Got rid of inline sections. --- markdown_extensions/tables.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'markdown_extensions') diff --git a/markdown_extensions/tables.py b/markdown_extensions/tables.py index 829044c..47c131b 100644 --- a/markdown_extensions/tables.py +++ b/markdown_extensions/tables.py @@ -31,9 +31,8 @@ class TablePattern(markdown.Pattern) : # add text ot inline section, later it will be # processed by core - inline = etree.SubElement(td, "inline") - inline.text = t - + + td.text = t tr.append(td) tr.tail = "\n" -- cgit v1.2.3