markdown-it-synapse-math
v3.0.5
Published
Markdown-it plugin to include math in your document
Downloads
1,011
Readme
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