diff options
Diffstat (limited to 'markdown_extensions/tables.py')
-rw-r--r-- | markdown_extensions/tables.py | 5 |
1 files changed, 2 insertions, 3 deletions
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" |