diff options
| author | Waylan Limberg <waylan.limberg@icloud.com> | 2015-04-07 19:50:25 -0400 |
|---|---|---|
| committer | Waylan Limberg <waylan.limberg@icloud.com> | 2018-07-31 10:20:53 -0400 |
| commit | 15acbdec8c9357b78435af707140b0278cf376b2 (patch) | |
| tree | 2fc8ed6ef8a8fe38978dcd755ebadf0a5d269370 /markdown/extensions | |
| parent | 7f36cdd25f0c8d163be4d6904914576feccbbe44 (diff) | |
| download | python-markdown-15acbdec8c9357b78435af707140b0278cf376b2.tar.gz | |
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.py | 1 |
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) |
