Installation

Stable release

The easiest way to install Markdown Subscript is to use pip.

$ python -m pip install MarkdownSubscript

This will install the latest stable version. If you need an older version, you may pin or limit the requirements.

$ python -m pip install 'MarkdownSubscript==2.1.0'
$ python -m pip install 'MarkdownSubscript>=2.0.0,<3'

If you don’t have pip installed, this Python installation guide can guide you through the process.

From source

The source files for Markdown Subscript can be downloaded from the Github repo.

You may use pip to install the latest version:

$ python -m pip install git+git://github.com/jambonrose/markdown_subscript_extension.git

Alternatively, you can clone the public repository:

$ git clone git://github.com/jambonrose/markdown_subscript_extension

Or download the tarball:

$ curl -OL https://github.com/jambonrose/markdown_subscript_extension/tarball/development

Once you have a copy of the source, you can install it with:

$ python setup.py install