aboutsummaryrefslogtreecommitdiffstats
path: root/markdown_extensions
diff options
context:
space:
mode:
authorArtem Yunusov <nedrlab@gmail.com>2008-08-21 23:54:21 +0500
committerArtem Yunusov <nedrlab@gmail.com>2008-08-21 23:54:21 +0500
commitb4362b3bf562bfb1b79bff9aee07feba32983e58 (patch)
tree42dba3540f90d8744b21aea82a56f55524f52dfe /markdown_extensions
parentc6c579740dacac33d23665af5be8dcde04208712 (diff)
downloadmarkdown-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.py5
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"