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 218d324..64c9ced 100644
--- a/md_tw.py
+++ b/md_tw.py
@@ -52,6 +52,13 @@ class TWBlockLexer(mistune.BlockLexer):
'text': m.group(0),
})
+ def parse_heading(self, m):
+ self.tokens.append({
+ 'type': 'heading',
+ 'level': len(m.group(1)),
+ 'text': m.group(0),
+ })
+
class TWInlineLexer(mistune.InlineLexer):
"""Text Wrap Inline level lexer for inline gramars."""