aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/abbr.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2014-08-21 11:11:40 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2014-08-21 11:11:40 -0400
commit31ea829c686f6ed4cca5258967c0a30077f933f6 (patch)
treefbbaeb24ee32efcc3dbe458d1f49161fb8436208 /markdown/extensions/abbr.py
parent96636540ed04d29d6726f253ae014e89ecb0713c (diff)
downloadmarkdown-31ea829c686f6ed4cca5258967c0a30077f933f6.tar.gz
markdown-31ea829c686f6ed4cca5258967c0a30077f933f6.tar.bz2
markdown-31ea829c686f6ed4cca5258967c0a30077f933f6.zip
Standardized all extension header comments to a uniform format.
Diffstat (limited to 'markdown/extensions/abbr.py')
-rw-r--r--markdown/extensions/abbr.py25
1 files changed, 9 insertions, 16 deletions
diff --git a/markdown/extensions/abbr.py b/markdown/extensions/abbr.py
index 7f2344a..58dd0aa 100644
--- a/markdown/extensions/abbr.py
+++ b/markdown/extensions/abbr.py
@@ -4,22 +4,15 @@ Abbreviation Extension for Python-Markdown
This extension adds abbreviation handling to Python-Markdown.
-Simple Usage:
-
- >>> import markdown
- >>> text = """
- ... Some text with an ABBR and a REF. Ignore REFERENCE and ref.
- ...
- ... *[ABBR]: Abbreviation
- ... *[REF]: Abbreviation Reference
- ... """
- >>> print(markdown.markdown(text, ['abbr']))
- <p>Some text with an <abbr title="Abbreviation">ABBR</abbr> and a <abbr title="Abbreviation Reference">REF</abbr>. Ignore REFERENCE and ref.</p>
-
-Copyright 2007-2008
-* [Waylan Limberg](http://achinghead.com/)
-* [Seemant Kulleen](http://www.kulleen.org/)
-
+See <https://pythonhosted.org/Markdown/extensions/abbreviations.html>
+for documentation.
+
+Oringinal 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
+
+License: [BSD](http://www.opensource.org/licenses/bsd-license.php)
'''