-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<title>Test Moose</title>
</head>
<body class="claro themeDark" style="margin:0px;">
<div id="mga" class="mooseGraphArea"></div>
<!-- MathJax2 config. How much of this do we actually need to put in the MathJax3 config?
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
showMathMenu: false,
extensions: ["tex2jax.js", "TeX/AMSmath.js"],
jax: ["input/TeX", "output/SVG"],
tex2jax: {
inlineMath: [ ['$','$'], ["\\\\(","\\\\)"] ],
displayMath: [ ['$$','$$'], ["\\\\[","\\\\]"] ],
processEscapes: true
},
"SVG": { availableFonts: ["TeX"] },
TeX: {
Macros: {
slash: "/"
}
}
});
</script>
-->
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
},
svg: {
fontCache: 'global'
}
};
</script>
<script src="dist/mathjax/tex-svg.js"></script>
<script src="dist/main.bundle.js"></script>
</body>
</html>