aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/sane_lists.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/sane_lists.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/sane_lists.py')
-rw-r--r--markdown/extensions/sane_lists.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/markdown/extensions/sane_lists.py b/markdown/extensions/sane_lists.py
index 22a4ff3..9eb3a11 100644
--- a/markdown/extensions/sane_lists.py
+++ b/markdown/extensions/sane_lists.py
@@ -2,19 +2,16 @@
Sane List Extension for Python-Markdown
=======================================
-Modify the behavior of Lists in Python-Markdown t act in a sane manor.
+Modify the behavior of Lists in Python-Markdown to act in a sane manor.
-In standard Markdown syntax, the following would constitute a single
-ordered list. However, with this extension, the output would include
-two lists, the first an ordered list and the second and unordered list.
+See <https://pythonhosted.org/Markdown/extensions/sane_lists.html>
+for documentation.
- 1. ordered
- 2. list
+Original code Copyright 2011 [Waylan Limberg](http://achinghead.com)
- * unordered
- * list
+All changes Copyright 2011-2014 The Python Markdown Project
-Copyright 2011 - [Waylan Limberg](http://achinghead.com)
+License: [BSD](http://www.opensource.org/licenses/bsd-license.php)
"""