katex 0.13.12 → 0.13.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +3 -3
- package/contrib/copy-tex/README.md +3 -3
- package/contrib/mathtex-script-type/README.md +5 -5
- package/contrib/mhchem/README.md +1 -1
- package/dist/README.md +3 -3
- package/dist/katex.css +1 -1
- package/dist/katex.js +2 -2
- package/dist/katex.min.css +1 -1
- package/dist/katex.min.js +1 -1
- package/dist/katex.mjs +2 -2
- package/package.json +1 -1
- package/src/domTree.js +1 -1
package/dist/katex.mjs
CHANGED
|
@@ -1319,7 +1319,7 @@ class SvgNode {
|
|
|
1319
1319
|
}
|
|
1320
1320
|
|
|
1321
1321
|
toMarkup() {
|
|
1322
|
-
var markup = "<svg"; // Apply attributes
|
|
1322
|
+
var markup = "<svg xmlns=\"http://www.w3.org/2000/svg\""; // Apply attributes
|
|
1323
1323
|
|
|
1324
1324
|
for (var attr in this.attributes) {
|
|
1325
1325
|
if (Object.prototype.hasOwnProperty.call(this.attributes, attr)) {
|
|
@@ -17642,7 +17642,7 @@ var katex = {
|
|
|
17642
17642
|
/**
|
|
17643
17643
|
* Current KaTeX version
|
|
17644
17644
|
*/
|
|
17645
|
-
version: "0.13.
|
|
17645
|
+
version: "0.13.13",
|
|
17646
17646
|
|
|
17647
17647
|
/**
|
|
17648
17648
|
* Renders the given LaTeX into an HTML+MathML combination, and adds
|
package/package.json
CHANGED
package/src/domTree.js
CHANGED