Use cuddled-lists options on markdown2 (fix #82)

This commit is contained in:
Mathieu PATUREL
2019-11-16 10:41:23 +11:00
parent 192f61bf0c
commit 04989f8660
2 changed files with 2 additions and 19 deletions

View File

@ -17,7 +17,7 @@ from .lib.markdown2 import Markdown
__all__ = ("markdown2html",)
markdowner = Markdown(extras=["fenced-code-blocks"])
markdowner = Markdown(extras=["fenced-code-blocks", "cuddled-lists"])
# FIXME: how do I choose how many workers I want? Does thread pool reuse threads or
# does it stupidly throw them out? (we could implement something of our own)