Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/formats/revealjs/reveal/plugin/math/plugin.js
12923 views
1
import {KaTeX} from "./katex";
2
import {MathJax2} from "./mathjax2";
3
import {MathJax3} from "./mathjax3";
4
5
const defaultTypesetter = MathJax2;
6
7
/*!
8
* This plugin is a wrapper for the MathJax2,
9
* MathJax3 and KaTeX typesetter plugins.
10
*/
11
export default Plugin = Object.assign( defaultTypesetter(), {
12
KaTeX,
13
MathJax2,
14
MathJax3
15
} );
16