‹›
markdown.extensions.sane_lists
¶
Modify the behavior of Lists in Python-Markdown to act in a sane manor.
See documentation for details.
Classes:
-
SaneOListProcessor
–Override
SIBLING_TAGS
to not includeul
and setLAZY_OL
toFalse
. -
SaneUListProcessor
–Override
SIBLING_TAGS
to not includeol
. -
SaneListExtension
–Add sane lists to Markdown.
‹›
markdown.extensions.sane_lists.SaneOListProcessor(parser: blockparser.BlockParser)
¶
Bases: OListProcessor
Override SIBLING_TAGS
to not include ul
and set LAZY_OL
to False
.
Attributes:
-
SIBLING_TAGS
–Exclude
ul
from list of siblings. -
LAZY_OL
–Disable lazy list behavior.
‹›
markdown.extensions.sane_lists.SaneUListProcessor(parser: blockparser.BlockParser)
¶
Bases: UListProcessor
Override SIBLING_TAGS
to not include ol
.
Attributes:
-
SIBLING_TAGS
–Exclude
ol
from list of siblings.