blob: a92ccfb7cdc862f17973d52fd44085256f5f2c29 [file] [log] [blame]
Christophe Dervieux8afae132021-12-06 15:16:42 +01001import {KaTeX} from "./katex";
2import {MathJax2} from "./mathjax2";
3import {MathJax3} from "./mathjax3";
4
5const defaultTypesetter = MathJax2;
6
7/*!
8 * This plugin is a wrapper for the MathJax2,
9 * MathJax3 and KaTeX typesetter plugins.
10 */
11export default Plugin = Object.assign( defaultTypesetter(), {
12 KaTeX,
13 MathJax2,
14 MathJax3
15} );