summaryrefslogtreecommitdiff
path: root/markdown/extensions/abbr.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown/extensions/abbr.py')
-rw-r--r--markdown/extensions/abbr.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/markdown/extensions/abbr.py b/markdown/extensions/abbr.py
index 9879314..0649870 100644
--- a/markdown/extensions/abbr.py
+++ b/markdown/extensions/abbr.py
@@ -7,7 +7,7 @@ This extension adds abbreviation handling to Python-Markdown.
See <https://Python-Markdown.github.io/extensions/abbreviations>
for documentation.
-Oringinal code Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/) and
+Original code Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/) and
[Seemant Kulleen](http://www.kulleen.org/)
All changes Copyright 2008-2014 The Python Markdown Project
@@ -28,7 +28,7 @@ class AbbrExtension(Extension):
""" Abbreviation Extension for Python-Markdown. """
def extendMarkdown(self, md):
- """ Insert AbbrPreprocessor before ReferencePreprocessor. """
+ """ Insert `AbbrPreprocessor` before `ReferencePreprocessor`. """
md.parser.blockprocessors.register(AbbrPreprocessor(md.parser), 'abbr', 16)
@@ -43,7 +43,7 @@ class AbbrPreprocessor(BlockProcessor):
def run(self, parent, blocks):
'''
Find and remove all Abbreviation references from the text.
- Each reference is set as a new AbbrPattern in the markdown instance.
+ Each reference is set as a new `AbbrPattern` in the markdown instance.
'''
block = blocks.pop(0)