返回 reveal.js
plugin.js
根目录 / plugin / math / plugin.js
1 import {KaTeX} from "./katex";
2 import {MathJax2} from "./mathjax2";
3 import {MathJax3} from "./mathjax3";
4 import {MathJax4} from "./mathjax4";
5
6 const defaultTypesetter = MathJax2;
7
8 /*!
9 * This plugin is a wrapper for the MathJax2,
10 * MathJax3, MathJax4 and KaTeX typesetter plugins.
11 */
12 export default Plugin = Object.assign( defaultTypesetter(), {
13 KaTeX,
14 MathJax2,
15 MathJax3,
16 MathJax4
17 } );
17 lines JAVASCRIPT