OpenColloq WS24 ECS

This commit is contained in:
Theresa Treimer 2024-12-11 17:31:47 +01:00
parent 7d285aa05f
commit 5fe9f40dbe
207 changed files with 13586 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
} );