aboutsummaryrefslogtreecommitdiffstats
path: root/mdx_tables.py
diff options
context:
space:
mode:
authorYuri Takhteyev <yuri@freewisdom.org>2008-05-02 10:33:47 -0700
committerYuri Takhteyev <yuri@freewisdom.org>2008-05-02 10:33:47 -0700
commitdc9e65bcdc7416c66a9cb2026616dc4cc1c9da3a (patch)
tree61dbe9a4143b99c0c9c197a51156b30e7a4e6324 /mdx_tables.py
parenta190c3941a7bed4274fe08e92ba4ce368c1c837f (diff)
downloadmarkdown-dc9e65bcdc7416c66a9cb2026616dc4cc1c9da3a.tar.gz
markdown-dc9e65bcdc7416c66a9cb2026616dc4cc1c9da3a.tar.bz2
markdown-dc9e65bcdc7416c66a9cb2026616dc4cc1c9da3a.zip
Adding four extensions that weren't in source control before.
Diffstat (limited to 'mdx_tables.py')
-rw-r--r--mdx_tables.py65
1 files changed, 65 insertions, 0 deletions
diff --git a/mdx_tables.py b/mdx_tables.py
new file mode 100644
index 0000000..c5c84a4
--- /dev/null
+++ b/mdx_tables.py
@@ -0,0 +1,65 @@
+#!/usr/bin/env python
+
+"""
+Table extension for Python-Markdown
+"""
+
+import markdown
+
+
+class TablePattern(markdown.Pattern) :
+ def __init__ (self, md):
+ markdown.Pattern.__init__(self, r'^\|([^\n]*)\|(\n|$)')
+ self.md = md
+
+ def handleMatch(self, m, doc) :
+ # a single line represents a row
+ tr = doc.createElement('tr')
+ tr.appendChild(doc.createTextNode('\n'))
+ # chunks between pipes represent cells
+ for t in m.group(2).split('|'):
+ if len(t) >= 2 and t.startswith('*') and t.endswith('*'):
+ # if a cell is bounded by asterisks, it is a <th>
+ td = doc.createElement('th')
+ t = t[1:-1]
+ else:
+ # otherwise it is a <td>
+ td = doc.createElement('td')
+ # apply inline patterns on chunks
+ for n in self.md._handleInline(t):
+ if(type(n) == unicode):
+ td.appendChild(doc.createTextNode(n))
+ else:
+ td.appendChild(n)
+ tr.appendChild(td)
+ # very long lines are evil
+ tr.appendChild(doc.createTextNode('\n'))
+ return tr
+
+
+class TablePostprocessor:
+ def run(self, doc):
+ # markdown wrapped our <tr>s in a <p>, we fix that here
+ def test_for_p(element):
+ return element.type == 'element' and element.nodeName == 'p'
+ # replace "p > tr" with "table > tr"
+ for element in doc.find(test_for_p):
+ for node in element.childNodes:
+ if(node.type == 'text' and node.value.strip() == ''):
+ # skip leading whitespace
+ continue
+ if (node.type == 'element' and node.nodeName == 'tr'):
+ element.nodeName = 'table'
+ break
+
+
+class TableExtension(markdown.Extension):
+ def extendMarkdown(self, md, md_globals):
+ md.inlinePatterns.insert(0, TablePattern(md))
+ md.postprocessors.append(TablePostprocessor())
+
+
+def makeExtension(configs):
+ return TableExtension(configs)
+
+