Last active
April 27, 2016 16:04
-
-
Save russgray/e65eadcafb89bdf6cb41adb74fa2ada9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Subscript extension for Markdown. | |
To subscript something, place a tilde symbol, '~', before and after the | |
text that you would like in subscript: C~6~H~12~O~6~ | |
The numbers in this example will be subscripted. See below for more: | |
Examples: | |
>>> import markdown | |
>>> md = markdown.Markdown(extensions=['subscript']) | |
>>> md.convert('This is sugar: C~6~H~12~O~6~') | |
u'<p>This is sugar: C<sub>6</sub>H<sub>12</sub>O<sub>6</sub></p>' | |
Paragraph breaks will nullify subscripts across paragraphs. Line breaks | |
within paragraphs will not. | |
""" | |
import markdown | |
# Global Vars | |
SUBSCRIPT_RE = r'(\~)([^\~]*)\2' # the number is subscript~2~ | |
class SubscriptPattern(markdown.inlinepatterns.Pattern): | |
""" Return a subscript Element: `C~6~H~12~O~6~' """ | |
def handleMatch(self, m): | |
subsc = m.group(3) | |
text = subsc | |
el = markdown.util.etree.Element("sub") | |
el.text = markdown.util.AtomicString(text) | |
return el | |
class SubscriptExtension(markdown.Extension): | |
""" Subscript Extension for Python-Markdown. """ | |
def extendMarkdown(self, md, md_globals): | |
""" Replace subscript with SubscriptPattern """ | |
md.inlinePatterns['subscript'] = SubscriptPattern(SUBSCRIPT_RE, md) | |
def makeExtension(*args, **kwargs): | |
return SubscriptExtension(*args, **kwargs) | |
if __name__ == "__main__": | |
import doctest | |
doctest.testmod() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment