Welcome to Markdown Superscript’s documentation!

This Python package is an extension to the Python Markdown project which adds the ability to superscript text. To do so, the character ~ becomes a Markdown tag for text meant to be superscripted, and is replaced with the HTML sup tag.

For example, the extension transforms the text directly below into the HTML shown after it.

2^10^ is 1024.
<p>2<sup>10</sup> is 1024.</p>

The code is Simplified (2 Clause) BSD license and is available on Github.