diff options
Diffstat (limited to 'md_tw.py')
-rw-r--r-- | md_tw.py | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -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 |