From dc49d7128d409c7c396286f06a57611e1f5c324e Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Mon, 19 Feb 2018 05:05:41 +0000 Subject: md_tw.py: Add TWMarkdown._add_prefix. * md_tw.py (TWMarkdown)[_add_prefix]: New method. --- md_tw.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'md_tw.py') diff --git a/md_tw.py b/md_tw.py index 1d714c2..5492d6a 100644 --- a/md_tw.py +++ b/md_tw.py @@ -323,6 +323,13 @@ class TWMarkdown(mistune.Markdown): # Add newline at the end. return '{}\n'.format(out.strip('\n')) + def _add_prefix(self, prefix, initial=True, subseq=True): + p = self.renderer.tw_get('initial_indent') + prefix + + if initial: + self.renderer.tw_set(initial_indent=p) + if subseq: + self.renderer.tw_set(subsequent_indent=p) def output_block_quote(self): # Set renderer to prepend '> ' -- cgit v1.2.3