3.0.5 • Published 5 years ago

markdown-it-synapse-math v3.0.5

Weekly downloads
105
License
MIT
Repository
github
Last release
5 years ago

markdown-it-synapse-math

Based very loosely on markdown-it-math for integration with Synapse and our MathJax workflow.

Pythagoran theorem is $$/(a^2 + b^2 = c^2/)$$ will render to:
a^2 + b^2 = c^2
Bayes theorem:

$$
\begin{aligned}
P(A | B) = (P(B | A)P(A)) / P(B)
\end{aligned}
$$

will render to a block with:
P(A | B) = (P(B | A)P(A)) / P(B)

Installation

npm install

Usage

var md = require('markdown-it')()
        .use(require('markdown-it-math'), suffix);
// rendering relies on suffix for MathJax to be pointed to the correct DOM elements