Metadata-Version: 2.0
Name: python-markdown-mathjax
Version: 1.0.1
Summary: MathJax extension for python-markdown
Home-page: https://github.com/liuyug/python-markdown-mathjax.git
Author: Yugang LIU
Author-email: liuyug@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Requires-Dist: Markdown (>=2.5)

=====================================
MarkJax extension for Python-Markdown
=====================================
.. note::

    "\" is a escape character and use "\\" to show "\".

TeX or LaTeX
============
::

    ```markdown
    inline preprocess : \( E = mc^2 \)
    display preprocess: $$ E = mc^2 $$
    display preprocess: \[ E = mc^2 \]

    ```
html output::

    ```html
    <script type="math/tex">E = mc^2</script>
    <script type="math/tex; mode=display">E = mc^2</script>

    ```

.. note::

    "$" is USD unit, so ignore it.

AsciiMath
=========
::

    ```markdown
    preprocess: \` E = mc^2 \`

    ```

html output::

    ```html
    <script type="math/asciimath; mode=display">E = mc^2</script>
    ```


