summaryrefslogtreecommitdiffstats
path: root/md_tw.py
diff options
context:
space:
mode:
Diffstat (limited to 'md_tw.py')
-rw-r--r--md_tw.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/md_tw.py b/md_tw.py
index 188d205..9bc0e2f 100644
--- a/md_tw.py
+++ b/md_tw.py
@@ -272,6 +272,12 @@ class TWRenderer(mistune.Renderer):
out = '{}'.format(text.rstrip('>\n'))
return out
+ def block_html(self, html):
+ out = '{}'.format(html)
+ out = textwrap.indent(out, self.tw_get('initial_indent'),
+ lambda line: True)
+ return out
+
def paragraph(self, text):
out = self._tw_fill(text)
out = '{}\n{}\n'.format(out, self.tw_get('initial_indent').strip())