diff options
author | Artem Yunusov <nedrlab@gmail.com> | 2008-08-21 23:54:21 +0500 |
---|---|---|
committer | Artem Yunusov <nedrlab@gmail.com> | 2008-08-21 23:54:21 +0500 |
commit | b4362b3bf562bfb1b79bff9aee07feba32983e58 (patch) | |
tree | 42dba3540f90d8744b21aea82a56f55524f52dfe /markdown_extensions | |
parent | c6c579740dacac33d23665af5be8dcde04208712 (diff) | |
download | markdown-b4362b3bf562bfb1b79bff9aee07feba32983e58.tar.gz markdown-b4362b3bf562bfb1b79bff9aee07feba32983e58.tar.bz2 markdown-b4362b3bf562bfb1b79bff9aee07feba32983e58.zip |
Got rid of inline sections.
Diffstat (limited to 'markdown_extensions')
-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" |