summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--md_tw.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/md_tw.py b/md_tw.py
index 354f7ba..21f6598 100644
--- a/md_tw.py
+++ b/md_tw.py
@@ -284,6 +284,10 @@ class TWRenderer(mistune.Renderer):
return out
+ def list(self, body, ordered=True):
+ out = '{}\n\n\n'.format(body.rstrip())
+ return out
+
def list_item(self, text):
out = '{}\n'.format(text)
return out