Dejvino
d3771ec49d
Last commit: commit e1c180565e48ae1b595f44edef319872262a99c7 Merge: b8d97d2 f2b0316 Author: Hakim El Hattab <hakim.elhattab@gmail.com> Date: Wed Aug 9 15:17:25 2023 +0200 Merge pull request #3445 from t-fritsch/fix-scss-watch-tasks fix scss watch tasks broken on syntax error
15 lines
334 B
JavaScript
15 lines
334 B
JavaScript
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
|
|
} ); |