Use cuddled-lists options on markdown2 (fix #82)
This commit is contained in:
@ -1,18 +1 @@
|
|||||||
# hello world
|
a_b_c
|
||||||
|
|
||||||
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!
|
|
||||||
@ -17,7 +17,7 @@ from .lib.markdown2 import Markdown
|
|||||||
|
|
||||||
__all__ = ("markdown2html",)
|
__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
|
# 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)
|
# does it stupidly throw them out? (we could implement something of our own)
|
||||||
|
|||||||
Reference in New Issue
Block a user