Read Me
October 9, 2018 · View on GitHub
Latest Release: |Version| |Tag|
Documentation: |Docs|
Compatibility: |Implementation| |Python| |License|
Tests: |Build| |Coverage| |PyUp| |Requirements|
.. |Version| image:: http://img.shields.io/pypi/v/MarkdownSuperscript.svg :target: https://pypi.org/project/MarkdownSuperscript/ :alt: PyPI Version
.. |Tag| image:: https://img.shields.io/github/tag/jambonrose/markdown_superscript_extension.svg :target: https://github.com/jambonrose/markdown_superscript_extension/releases :alt: Github Tag
.. |Docs| image:: https://readthedocs.org/projects/markdown_superscript_extension/badge/?version=latest :target: http://markdown_superscript_extension.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
.. |Implementation| image:: https://img.shields.io/pypi/implementation/MarkdownSuperscript.svg :target: https://pypi.org/project/MarkdownSuperscript/ :alt: Python Implementation Support
.. |Python| image:: https://img.shields.io/pypi/pyversions/MarkdownSuperscript.svg :target: https://pypi.org/project/MarkdownSuperscript/ :alt: Python Support
.. |License| image:: http://img.shields.io/pypi/l/MarkdownSuperscript.svg :target: http://opensource.org/licenses/BSD-2-Clause :alt: License
.. |Build| image:: https://travis-ci.org/jambonrose/markdown_superscript_extension.svg?branch=development :target: https://travis-ci.org/jambonrose/markdown_superscript_extension :alt: Build Status
.. |Coverage| image:: https://codecov.io/gh/jambonrose/markdown_superscript_extension/branch/development/graph/badge.svg :target: https://codecov.io/gh/jambonrose/markdown_superscript_extension :alt: Coverage Status
.. |PyUp| image:: https://pyup.io/repos/github/jambonrose/markdown_superscript_extension/shield.svg :target: https://pyup.io/repos/github/jambonrose/markdown_superscript_extension/ :alt: Updates
.. |Requirements| image:: https://requires.io/github/jambonrose/markdown_superscript_extension/requirements.svg?branch=development :target: https://requires.io/github/jambonrose/markdown_superscript_extension/requirements/?branch=development :alt: Requirements Status
======= Read Me
.. start-pypi-description
An extension to the Python Markdown_ project which adds the ability to
superscript text. To do so, the character :code:^ becomes a Markdown
tag for text meant to be superscripted, and is replaced with the HTML
:code:sup tag.
For example, the extension transforms the text directly below into the HTML shown after it.
.. code-block:: text
$2^{10}$^ is 1024.
.. code-block:: html
<p>2<sup>10</sup> is 1024.</p>
This project is provided under the Simplified (2 Clause) BSD license_,
provided in full in the LICENSE file.
Please read the documentation_ for more information.
.. _Python Markdown: https://pypi.org/project/Markdown/
.. _Simplified (2 Clause) BSD license: http://choosealicense.com/licenses/bsd-2-clause/
.. _the documentation: https://markdown-superscript-extension.readthedocs.io/en/latest/