Python-Markdown extension to allow for subscript text.
Project description
An extension to the Python Markdown project which adds the ability to subscript text. To do so, the character ~
becomes a Markdown tag for text meant to be subscripted, and is replaced with the HTML sub
tag.
For example, given the text:
The molecular composition of water is H~2~O.
… using Markdown with this extension will output:
<p>The molecular composition of water is H<sub>2</sub>O.</p>
This project is provided under the Simplified (2 Clause) BSD license.
Installation
pip install MarkdownSubscript
Usage
Python
>>> from markdown import markdown >>> text = "The molecular composition of water is H~2~O." >>> markdown(text, ['subscript']) '<p>The molecular composition of water is H<sub>2</sub>O.</p>'
Command Line
$ echo 'The molecular composition of water is H~2~O.' > text.md $ python -m markdown -o html5 -x 'subscript' -f text.html text.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
MarkdownSubscript-1.0.1.zip
(5.2 kB
view hashes)
Built Distribution
Close
Hashes for MarkdownSubscript-1.0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb12a5cd1223fb8e99b818755a06a608dfe5eb7284d190cc643076fcaeb19519 |
|
MD5 | 0b5a5bbfbec58cc5258caf021d80ca13 |
|
BLAKE2b-256 | f90e024dd27ee6a0f54d7f649d1c36f8540428ca20835ae688eeebd00ea24fa3 |