added first freitalk talk

Signed-off-by: w1ntermute <gitlab@mail.smarquardt.space>
This commit is contained in:
w1ntermute 2023-10-06 20:54:35 +02:00
commit e55fd234dd
114 changed files with 9664 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
} );