Mercurial > public > sg101
view core/mdexts/deleted.py @ 907:344f7914d421
Add scheme=https to oembed request.
YouTube added this so you could get HTML that used https to embed the video.
It seems that Vimeo also supports it.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 15 Mar 2015 21:48:33 -0500 |
parents | 32ebe22f0cad |
children |
line wrap: on
line source
""" A python-markdown extension to add support for <del>. The Markdown syntax is --this is deleted text--. """ import markdown DEL_RE = r'(---)(.*?)---' class DelExtension(markdown.Extension): def extendMarkdown(self, md, md_globals): del_tag = markdown.inlinepatterns.SimpleTagPattern(DEL_RE, 'del') md.inlinePatterns.add('del', del_tag, '>not_strong') def makeExtension(configs=None): return DelExtension(configs)