aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2015-04-07 19:50:25 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2018-07-31 10:20:53 -0400
commit15acbdec8c9357b78435af707140b0278cf376b2 (patch)
tree2fc8ed6ef8a8fe38978dcd755ebadf0a5d269370 /markdown/extensions
parent7f36cdd25f0c8d163be4d6904914576feccbbe44 (diff)
downloadmarkdown-15acbdec8c9357b78435af707140b0278cf376b2.tar.gz
markdown-15acbdec8c9357b78435af707140b0278cf376b2.tar.bz2
markdown-15acbdec8c9357b78435af707140b0278cf376b2.zip
Remove lazy_ol keyword. Use sane_lists extension instead.
This was adapted from 11408e50 of the md3 branch.
Diffstat (limited to 'markdown/extensions')
-rw-r--r--markdown/extensions/sane_lists.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/markdown/extensions/sane_lists.py b/markdown/extensions/sane_lists.py
index 7fb4fd6..479da04 100644
--- a/markdown/extensions/sane_lists.py
+++ b/markdown/extensions/sane_lists.py
@@ -25,6 +25,7 @@ import re
class SaneOListProcessor(OListProcessor):
SIBLING_TAGS = ['ol']
+ LAZY_OL = False
def __init__(self, parser):
super(SaneOListProcessor, self).__init__(parser)