katex 0.13.24 → 0.14.0
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/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 +1 -1
- package/dist/katex.min.css +1 -1
- package/dist/katex.min.js +1 -1
- package/dist/katex.mjs +1 -1
- package/package.json +28 -1
package/dist/katex.mjs
CHANGED
|
@@ -17746,7 +17746,7 @@ var katex = {
|
|
|
17746
17746
|
/**
|
|
17747
17747
|
* Current KaTeX version
|
|
17748
17748
|
*/
|
|
17749
|
-
version: "0.
|
|
17749
|
+
version: "0.14.0",
|
|
17750
17750
|
|
|
17751
17751
|
/**
|
|
17752
17752
|
* Renders the given LaTeX into an HTML+MathML combination, and adds
|
package/package.json
CHANGED
|
@@ -1,8 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "katex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Fast math typesetting for the web.",
|
|
5
5
|
"main": "dist/katex.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"require": "./dist/katex.js",
|
|
9
|
+
"import": "./dist/katex.mjs"
|
|
10
|
+
},
|
|
11
|
+
"./contrib/auto-render": {
|
|
12
|
+
"require": "./dist/contrib/auto-render.js",
|
|
13
|
+
"import": "./dist/contrib/auto-render.mjs"
|
|
14
|
+
},
|
|
15
|
+
"./contrib/mhchem": {
|
|
16
|
+
"require": "./dist/contrib/mhchem.js",
|
|
17
|
+
"import": "./dist/contrib/mhchem.mjs"
|
|
18
|
+
},
|
|
19
|
+
"./contrib/copy-tex": {
|
|
20
|
+
"require": "./dist/contrib/copy-tex.js",
|
|
21
|
+
"import": "./dist/contrib/copy-tex.mjs"
|
|
22
|
+
},
|
|
23
|
+
"./contrib/mathtex-script-type": {
|
|
24
|
+
"require": "./dist/contrib/mathtex-script-type.js",
|
|
25
|
+
"import": "./dist/contrib/mathtex-script-type.mjs"
|
|
26
|
+
},
|
|
27
|
+
"./contrib/render-a11y-string": {
|
|
28
|
+
"require": "./dist/contrib/render-a11y-string.js",
|
|
29
|
+
"import": "./dist/contrib/render-a11y-string.mjs"
|
|
30
|
+
},
|
|
31
|
+
"./*": "./*"
|
|
32
|
+
},
|
|
6
33
|
"homepage": "https://katex.org",
|
|
7
34
|
"repository": {
|
|
8
35
|
"type": "git",
|