summaryrefslogtreecommitdiffstats
path: root/md_tw.py
diff options
context:
space:
mode:
Diffstat (limited to 'md_tw.py')
-rw-r--r--md_tw.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/md_tw.py b/md_tw.py
index 5b6ac93..b98c732 100644
--- a/md_tw.py
+++ b/md_tw.py
@@ -286,11 +286,6 @@ class TWRenderer(mistune.Renderer):
out = '{}'.format(hr)
return out
- def paragraph(self, text):
- out = self.tw_fill(text)
- out = '{}\n{}\n'.format(out, self.tw_get('initial_indent').strip())
- return out
-
def list(self, body, ordered=True):
out = '{}\n\n\n'.format(body.rstrip())
return out
@@ -299,6 +294,12 @@ class TWRenderer(mistune.Renderer):
out = '{}\n'.format(text)
return out
+ def paragraph(self, text):
+ out = self.tw_fill(text)
+ out = '{}\n{}\n'.format(out, self.tw_get('initial_indent').rstrip())
+
+ return out
+
def def_link(self, text):
out = '{}'.format(text)
return out