From 15224bd352bc6c06ae05ffd78d5ecee9ea07f6ef Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Sun, 19 Oct 2008 22:30:03 -0400 Subject: Changed Postprocessors to Treeprocessors and TextPostProcessors to Postprocessors. These names more acturately depict what things do. Also updated the extensions and docs to match. --- markdown_extensions/tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'markdown_extensions/tables.py') diff --git a/markdown_extensions/tables.py b/markdown_extensions/tables.py index c485f55..5339ae1 100644 --- a/markdown_extensions/tables.py +++ b/markdown_extensions/tables.py @@ -38,7 +38,7 @@ class TablePattern(markdown.Pattern) : return tr -class TablePostprocessor: +class TableTreeprocessor(markdown.Treeprocessor): def _findElement(self, element, name): result = [] @@ -62,7 +62,7 @@ class TablePostprocessor: class TableExtension(markdown.Extension): def extendMarkdown(self, md, md_globals): md.inlinePatterns.add('table', TablePattern(md), "