Static output of presentation as presented

This commit is contained in:
benjamin melançon 2024-11-18 21:12:50 -05:00
parent 57e4c16287
commit 1f8bb1f30c
88 changed files with 10453 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import {KaTeX} from "./katex";
import {MathJax2} from "./mathjax2";
import {MathJax3} from "./mathjax3";
const defaultTypesetter = MathJax2;
/*!
* This plugin is a wrapper for the MathJax2,
* MathJax3 and KaTeX typesetter plugins.
*/
export default Plugin = Object.assign( defaultTypesetter(), {
KaTeX,
MathJax2,
MathJax3
} );