aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/sane_lists.py
diff options
context:
space:
mode:
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)
"""