Mercurial > public > sg101
comparison core/mdexts/deleted.py @ 848:32ebe22f0cad
For issue #79 update to Markdown 2.5.1.
This commit follows new Markdown conventions for extensions.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 28 Oct 2014 19:33:14 -0500 |
parents | tools/mdx_del.py@2e90b63520b8 |
children |
comparison
equal
deleted
inserted
replaced
847:ba9216950eb1 | 848:32ebe22f0cad |
---|---|
1 """ | |
2 A python-markdown extension to add support for <del>. | |
3 The Markdown syntax is --this is deleted text--. | |
4 | |
5 """ | |
6 import markdown | |
7 | |
8 | |
9 DEL_RE = r'(---)(.*?)---' | |
10 | |
11 class DelExtension(markdown.Extension): | |
12 | |
13 def extendMarkdown(self, md, md_globals): | |
14 del_tag = markdown.inlinepatterns.SimpleTagPattern(DEL_RE, 'del') | |
15 md.inlinePatterns.add('del', del_tag, '>not_strong') | |
16 | |
17 | |
18 def makeExtension(configs=None): | |
19 return DelExtension(configs) |