alberic89 / markdown_sub_sup

A python markdown extension for add sub and sup support.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

markdown_sub_sup

Extends the Python Markdown. Adds the possibility to use ^something^ to create <sup>something</sup> or ~something~ to create <sub>something</sub>

Install through pip:

pip install markdown_sub_sup

To enable the markdown_sub_sup package and use it in your markdown generation just add it like so:

import markdown

result = markdown.markdown(textToRender, extensions=["markdown_sub_sup",])

About

A python markdown extension for add sub and sup support.

License:GNU Lesser General Public License v3.0


Languages

Language:Python 100.0%