mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-18 02:20:46 +00:00
2c3e4a4b5d
* Uses the MediaWiki resource modules to load MathJax Change-Id: I9471b1baf41d2bcc4fdc64a26e7d806e92b9b17f
25 lines
701 B
HTML
25 lines
701 B
HTML
<!--
|
|
This file is loaded from main.js (phantomjs).
|
|
-->
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
MathJax = {
|
|
jax: ["input/TeX","output/SVG","output/NativeMML"],
|
|
extensions: ["tex2jax.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
|
|
showProcessingMessages: false,
|
|
messageStyle: "none",
|
|
tex2jax: {
|
|
inlineMath: [["$","$"],["\\(","\\)"]]
|
|
}
|
|
};
|
|
</script>
|
|
<script type="text/javascript" src="../modules/MathJax/unpacked/MathJax.js">
|
|
</script>
|
|
<script type="text/javascript" src="engine.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="math">${}$</div>
|
|
</body>
|
|
</html>
|