Mercurial > public > sg101
comparison tools/mdx_del.py @ 356:f54bf3b3bece
Fix 180; Add strikethrough capability to markdown via an extension. Also control in SVN the extensions we are using.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 04 Mar 2011 02:10:37 +0000 |
parents | |
children | 2e90b63520b8 |
comparison
equal
deleted
inserted
replaced
355:a1e3724f0799 | 356:f54bf3b3bece |
---|---|
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) |