diff options
author | Yuri Takhteyev <yuri@freewisdom.org> | 2008-10-12 22:35:03 -0700 |
---|---|---|
committer | Yuri Takhteyev <yuri@freewisdom.org> | 2008-10-12 22:35:03 -0700 |
commit | f76b532c21be5ef95dbfbcee52bda3760587b7fc (patch) | |
tree | 8deb1f6b250799d76708086d6875aed9057529e6 /markdown_extensions/tables.py | |
parent | 2d349a1f5dc4b55f2d2bcd7b9844d12ed0d31081 (diff) | |
download | markdown-f76b532c21be5ef95dbfbcee52bda3760587b7fc.tar.gz markdown-f76b532c21be5ef95dbfbcee52bda3760587b7fc.tar.bz2 markdown-f76b532c21be5ef95dbfbcee52bda3760587b7fc.zip |
Incorporated Ben Wilson's Treap implementation.
Pre-processors, post-processors, patterns, etc. are now all stored in
Treaps. We can then insert items between them with code like this:
markdown.inlinePatterns.add("foo", FooPattern(), "<strong")
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 47c131b..c485f55 100644 --- a/markdown_extensions/tables.py +++ b/markdown_extensions/tables.py @@ -38,7 +38,6 @@ class TablePattern(markdown.Pattern) : return tr - class TablePostprocessor: def _findElement(self, element, name): @@ -62,8 +61,8 @@ class TablePostprocessor: class TableExtension(markdown.Extension): def extendMarkdown(self, md, md_globals): - md.inlinePatterns.insert(0, TablePattern(md)) - md.postprocessors.append(TablePostprocessor()) + md.inlinePatterns.add('table', TablePattern(md), "<backtick") + md.postprocessors['table'] = TablePostprocessor() def makeExtension(configs): |