@quarto/jupyterlab-quarto 0.3.1 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/providers/math.js +2 -2
- package/package.json +1 -1
package/lib/providers/math.js
CHANGED
@@ -91,7 +91,7 @@ MathJax = {
|
|
91
91
|
};`;
|
92
92
|
document.head.appendChild(configEl);
|
93
93
|
const polyFillEl = document.createElement('script');
|
94
|
-
polyFillEl.setAttribute('src', 'https://
|
94
|
+
polyFillEl.setAttribute('src', 'https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6');
|
95
95
|
document.head.appendChild(polyFillEl);
|
96
96
|
const scriptEl = document.createElement('script');
|
97
97
|
scriptEl.id = mathjaxId;
|
@@ -104,7 +104,7 @@ MathJax = {
|
|
104
104
|
}
|
105
105
|
});
|
106
106
|
/*
|
107
|
-
<script src="https://
|
107
|
+
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
|
108
108
|
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
109
109
|
|
110
110
|
*/
|
package/package.json
CHANGED