summaryrefslogtreecommitdiffstats
path: root/md_tw.py
diff options
context:
space:
mode:
Diffstat (limited to 'md_tw.py')
-rw-r--r--md_tw.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/md_tw.py b/md_tw.py
index 6c73903..7cb203b 100644
--- a/md_tw.py
+++ b/md_tw.py
@@ -38,6 +38,13 @@ class TWBlockLexer(mistune.BlockLexer):
key = mistune.escape(key.lower(), quote=True)
return self._key_pattern.sub(' ', key)
+ def parse_block_code(self, m):
+ self.tokens.append({
+ 'type': 'code',
+ 'lang': None,
+ 'text': m.group(0),
+ })
+
class TWInlineLexer(mistune.InlineLexer):
"""Text Wrap Inline level lexer for inline gramars."""