summaryrefslogtreecommitdiff
path: root/markdown/extensions/tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown/extensions/tables.py')
-rw-r--r--markdown/extensions/tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/extensions/tables.py b/markdown/extensions/tables.py
index c8b1024..a72103f 100644
--- a/markdown/extensions/tables.py
+++ b/markdown/extensions/tables.py
@@ -225,7 +225,7 @@ class TableExtension(Extension):
super().__init__(**kwargs)
def extendMarkdown(self, md):
- """ Add an instance of TableProcessor to BlockParser. """
+ """ Add an instance of `TableProcessor` to `BlockParser`. """
if '|' not in md.ESCAPED_CHARS:
md.ESCAPED_CHARS.append('|')
processor = TableProcessor(md.parser, self.getConfigs())