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

@ -1,18 +1 @@
# hello world
This is a *test*. Some inline `[2]code()`.
what the hell...
```python
import this
if input("answer yes") != 'yes':
print("Really?")
```
this flickering is really annoying...
It looks like it's gone... Oh wait nah, it's still here...
This should still be working, and it is!
a_b_c

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)