Skip to content

Commit e74702f

Browse files
committed
chore(release): 0.16.43 [ci skip]
## [0.16.43](v0.16.42...v0.16.43) (2026-03-26) ### Bug Fixes * use makeEm() consistently to truncate long CSS decimals ([#4181](#4181)) ([0967dcc](0967dcc))
1 parent 0967dcc commit e74702f

10 files changed

Lines changed: 42 additions & 35 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file. This CHANGELOG roughly follows the guidelines from [www.keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
33

4+
## [0.16.43](https://github.com/KaTeX/KaTeX/compare/v0.16.42...v0.16.43) (2026-03-26)
5+
6+
7+
### Bug Fixes
8+
9+
* use makeEm() consistently to truncate long CSS decimals ([#4181](https://github.com/KaTeX/KaTeX/issues/4181)) ([0967dcc](https://github.com/KaTeX/KaTeX/commit/0967dcc0278f20d4501a93f01c7343c70abb3fcd))
10+
411
## [0.16.42](https://github.com/KaTeX/KaTeX/compare/v0.16.41...v0.16.42) (2026-03-24)
512

613

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ Try out KaTeX [on the demo page](https://katex.org/#demo)!
3737
<!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly -->
3838
<html>
3939
<head>
40-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
40+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
4141

4242
<!-- The loading of KaTeX is deferred to speed up page rendering -->
43-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.js" integrity="sha384-qrraMcfiHZOij7s14X818B0oe4NpSugmOO0Q0fmDYBWV+6c10vA26yjevqe5zD0D" crossorigin="anonymous"></script>
43+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.js" integrity="sha384-I/76u4uGYb2jZizpHGbumq1RzC/CknJIAamvKNrTumsehWnS4xX0FFQvlX0I2s/n" crossorigin="anonymous"></script>
4444

4545
<!-- To automatically render math in text elements, include the auto-render extension: -->
46-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"
46+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"
4747
onload="renderMathInElement(document.body);"></script>
4848
</head>
4949
...

contrib/copy-tex/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This extension isn't part of KaTeX proper, so the script should be separately
1818
included in the page.
1919

2020
```html
21-
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/copy-tex.min.js" integrity="sha384-Pe2JWbaShhSRT0SESJ9XLPeAsi4yrNi7r/CiH0Coq7giBjK5a6Ae7XcybE8rNlQP" crossorigin="anonymous"></script>
21+
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/copy-tex.min.js" integrity="sha384-Pe2JWbaShhSRT0SESJ9XLPeAsi4yrNi7r/CiH0Coq7giBjK5a6Ae7XcybE8rNlQP" crossorigin="anonymous"></script>
2222
```
2323

2424
(Note that, as of KaTeX 0.16.0, there is no longer a corresponding CSS file.)
@@ -35,5 +35,5 @@ statement with `require('katex/contrib/copy-tex/katex2tex.js')`.
3535

3636
ECMAScript module is also available:
3737
```html
38-
<script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/copy-tex.mjs" integrity="sha384-PTy3nbMSATx5Ifo/k1ErbnbMVEp3koLGaqTD+zBo5H0fPFue/mKr1M3//74Fu6Tf" crossorigin="anonymous"></script>
38+
<script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/copy-tex.mjs" integrity="sha384-PTy3nbMSATx5Ifo/k1ErbnbMVEp3koLGaqTD+zBo5H0fPFue/mKr1M3//74Fu6Tf" crossorigin="anonymous"></script>
3939
```

contrib/mathtex-script-type/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ included in the page, in addition to KaTeX.
1111
Load the extension by adding the following line to your HTML file.
1212

1313
```html
14-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/mathtex-script-type.min.js" integrity="sha384-Va76RKpsqLRTaW8meIebMfcIo7cxNDc0uKaZNSuZzckwzNtDa3Xf77LciJ0CAjIC" crossorigin="anonymous"></script>
14+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/mathtex-script-type.min.js" integrity="sha384-Va76RKpsqLRTaW8meIebMfcIo7cxNDc0uKaZNSuZzckwzNtDa3Xf77LciJ0CAjIC" crossorigin="anonymous"></script>
1515
```
1616
You can download the script and use it locally, or from a local KaTeX installation instead.
1717

@@ -23,9 +23,9 @@ Then, in the body, we use a `math/tex` script to typeset the equation `x+\sqrt{1
2323
<!DOCTYPE html>
2424
<html>
2525
<head>
26-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
27-
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.js" integrity="sha384-qrraMcfiHZOij7s14X818B0oe4NpSugmOO0Q0fmDYBWV+6c10vA26yjevqe5zD0D" crossorigin="anonymous"></script>
28-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/mathtex-script-type.min.js" integrity="sha384-Va76RKpsqLRTaW8meIebMfcIo7cxNDc0uKaZNSuZzckwzNtDa3Xf77LciJ0CAjIC" crossorigin="anonymous"></script>
26+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
27+
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.js" integrity="sha384-I/76u4uGYb2jZizpHGbumq1RzC/CknJIAamvKNrTumsehWnS4xX0FFQvlX0I2s/n" crossorigin="anonymous"></script>
28+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/mathtex-script-type.min.js" integrity="sha384-Va76RKpsqLRTaW8meIebMfcIo7cxNDc0uKaZNSuZzckwzNtDa3Xf77LciJ0CAjIC" crossorigin="anonymous"></script>
2929
</head>
3030
<body>
3131
<script type="math/tex">x+\sqrt{1-x^2}</script>
@@ -35,4 +35,4 @@ Then, in the body, we use a `math/tex` script to typeset the equation `x+\sqrt{1
3535

3636
ECMAScript module is also available:
3737
```html
38-
<script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/mathtex-script-type.mjs" integrity="sha384-NG25TLm9zCgNw3KKNK+Ks1i5zmDB4v17CYL2TVA06JcpsALdnFs/0TabnkhyjbQb" crossorigin="anonymous"></script>
38+
<script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/mathtex-script-type.mjs" integrity="sha384-NG25TLm9zCgNw3KKNK+Ks1i5zmDB4v17CYL2TVA06JcpsALdnFs/0TabnkhyjbQb" crossorigin="anonymous"></script>

contrib/mhchem/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This extension adds to KaTeX the `\ce` and `\pu` functions from the [mhchem](htt
77
This extension isn't part of core KaTeX, so the script should be separately included. Write the following line into the HTML page's `<head>`. Place it *after* the line that calls `katex.js`, and if you make use of the [auto-render](https://katex.org/docs/autorender.html) extension, place it *before* the line that calls `auto-render.js`.
88

99
```html
10-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/mhchem.min.js" integrity="sha384-fB8BH//9nBzROkMUsu/Dr35jWHIbnKesUo9rW0hfEgw8mZGnkAyBAjKX9F98OVuo" crossorigin="anonymous"></script>
10+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/mhchem.min.js" integrity="sha384-fB8BH//9nBzROkMUsu/Dr35jWHIbnKesUo9rW0hfEgw8mZGnkAyBAjKX9F98OVuo" crossorigin="anonymous"></script>
1111
```
1212

1313
If you remove the `defer` attribute from this tag, then you must also remove the `defer` attribute from the `<script src="https://../katex.min.js">` tag.

docs/autorender.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ This extension isn't part of KaTeX proper, so the script needs to be included
1212
using a CDN:
1313

1414
```html
15-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
16-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.js" integrity="sha384-qrraMcfiHZOij7s14X818B0oe4NpSugmOO0Q0fmDYBWV+6c10vA26yjevqe5zD0D" crossorigin="anonymous"></script>
17-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"
15+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
16+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.js" integrity="sha384-I/76u4uGYb2jZizpHGbumq1RzC/CknJIAamvKNrTumsehWnS4xX0FFQvlX0I2s/n" crossorigin="anonymous"></script>
17+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"
1818
onload="renderMathInElement(document.body);"></script>
1919
```
2020

@@ -31,9 +31,9 @@ want to use a `defer` or `onload` attribute.
3131
For example:
3232

3333
```html
34-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
35-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.js" integrity="sha384-qrraMcfiHZOij7s14X818B0oe4NpSugmOO0Q0fmDYBWV+6c10vA26yjevqe5zD0D" crossorigin="anonymous"></script>
36-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"></script>
34+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
35+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.js" integrity="sha384-I/76u4uGYb2jZizpHGbumq1RzC/CknJIAamvKNrTumsehWnS4xX0FFQvlX0I2s/n" crossorigin="anonymous"></script>
36+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"></script>
3737
<script>
3838
document.addEventListener("DOMContentLoaded", function() {
3939
renderMathInElement(document.body, {
@@ -54,9 +54,9 @@ For example:
5454

5555
ECMAScript module is also available:
5656
```html
57-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
57+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
5858
<script type="module">
59-
import renderMathInElement from "https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/auto-render.mjs";
59+
import renderMathInElement from "https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/auto-render.mjs";
6060
renderMathInElement(document.body);
6161
</script>
6262
```

docs/browser.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ title: Browser
1111
<!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly -->
1212
<html>
1313
<head>
14-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
14+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
1515

1616
<!-- The loading of KaTeX is deferred to speed up page rendering -->
17-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.js" integrity="sha384-qrraMcfiHZOij7s14X818B0oe4NpSugmOO0Q0fmDYBWV+6c10vA26yjevqe5zD0D" crossorigin="anonymous"></script>
17+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.js" integrity="sha384-I/76u4uGYb2jZizpHGbumq1RzC/CknJIAamvKNrTumsehWnS4xX0FFQvlX0I2s/n" crossorigin="anonymous"></script>
1818

1919
<!-- To automatically render math in text elements, include the auto-render extension: -->
20-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"
20+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/contrib/auto-render.min.js" integrity="sha384-bjyGPfbij8/NDKJhSGZNP/khQVgtHUE5exjm4Ydllo42FwIgYsdLO2lXGmRBf5Mz" crossorigin="anonymous"
2121
onload="renderMathInElement(document.body);"></script>
2222
</head>
2323
...
@@ -29,15 +29,15 @@ If you include the `katex.js` directly, the `katex` object will be available as
2929
a global variable.
3030

3131
```html
32-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.css" integrity="sha384-eCs7PkyyZTR+SEvb1/j5Q95kgYmRjBuJz/08Rz2tFA8uQ145gqjrEGhObJez6w/i" crossorigin="anonymous">
33-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.js" integrity="sha384-hzghi2qEOxMV+9ldBitb9vXbPNaOk7k0hlPmxnKU6IBv9vRPt4d6dnzdHvXSgVFP" crossorigin="anonymous"></script>
32+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.css" integrity="sha384-E/APSN0SHkkjQIOkSNS/lwjY4lEzvqJT3sPbZLIVpB/qrHjqkgsxu8Qzb+W4gX4o" crossorigin="anonymous">
33+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.js" integrity="sha384-QV7fsUATiXVkNzseWdX9UXu1DBBQM4wU9aGcvRLz6vp2/3/hxSXQvabls0rwnY26" crossorigin="anonymous"></script>
3434
```
3535

3636
KaTeX also provides minified versions:
3737

3838
```html
39-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
40-
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.js" integrity="sha384-qrraMcfiHZOij7s14X818B0oe4NpSugmOO0Q0fmDYBWV+6c10vA26yjevqe5zD0D" crossorigin="anonymous"></script>
39+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
40+
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.js" integrity="sha384-I/76u4uGYb2jZizpHGbumq1RzC/CknJIAamvKNrTumsehWnS4xX0FFQvlX0I2s/n" crossorigin="anonymous"></script>
4141
```
4242

4343
The examples above load the script [deferred using the `defer` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
@@ -58,7 +58,7 @@ If you would rather use `font-display: swap` to prevent
5858
include `katex-swap.css` or `katex-swap.min.css`:
5959

6060
```html
61-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex-swap.min.css" integrity="sha384-vwWzcIKn8jnuJyBOfdLtA2etJJJw3AeCVsI9TUuRlcgZFuyMFYadtIHXG/Ii1va8" crossorigin="anonymous">
61+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex-swap.min.css" integrity="sha384-hZYokUGOen8FOfXO1EbVi5rUChWqUJS8uSuC3yfuTaOpOAki4e7iGPfHMy+OnKTk" crossorigin="anonymous">
6262
```
6363

6464
To prevent both FOUT and FOIT, you can prefetch KaTeX fonts.
@@ -92,22 +92,22 @@ for more detail.
9292
```html
9393
<script type="text/javascript">
9494
require([
95-
"https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.js",
95+
"https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.js",
9696
], katex => {
9797
...
9898
});
9999
</script>
100-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.css" integrity="sha384-eCs7PkyyZTR+SEvb1/j5Q95kgYmRjBuJz/08Rz2tFA8uQ145gqjrEGhObJez6w/i" crossorigin="anonymous">
100+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.css" integrity="sha384-E/APSN0SHkkjQIOkSNS/lwjY4lEzvqJT3sPbZLIVpB/qrHjqkgsxu8Qzb+W4gX4o" crossorigin="anonymous">
101101
```
102102

103103
### ECMAScript module
104104
```html
105105
<script type="module" type="text/javascript">
106-
import katex from 'https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.mjs';
106+
import katex from 'https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.mjs';
107107
...
108108
</script>
109-
<script nomodule defer src="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.js" integrity="sha384-hzghi2qEOxMV+9ldBitb9vXbPNaOk7k0hlPmxnKU6IBv9vRPt4d6dnzdHvXSgVFP" crossorigin="anonymous"></script>
110-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.css" integrity="sha384-eCs7PkyyZTR+SEvb1/j5Q95kgYmRjBuJz/08Rz2tFA8uQ145gqjrEGhObJez6w/i" crossorigin="anonymous">
109+
<script nomodule defer src="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.js" integrity="sha384-QV7fsUATiXVkNzseWdX9UXu1DBBQM4wU9aGcvRLz6vp2/3/hxSXQvabls0rwnY26" crossorigin="anonymous"></script>
110+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.css" integrity="sha384-E/APSN0SHkkjQIOkSNS/lwjY4lEzvqJT3sPbZLIVpB/qrHjqkgsxu8Qzb+W4gX4o" crossorigin="anonymous">
111111
```
112112

113113
> Use [`nomodule` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)

docs/support_table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a list of TeX functions, sorted alphabetically. This list includes funct
66

77
If you know the shape of a character, but not its name, [Detexify](https://detexify.kirelabs.org/classify.html) can help.
88

9-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
9+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
1010
<style>
1111
table tr,
1212
table td {

docs/supported.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a list of TeX functions supported by KaTeX. It is sorted into logical gr
66

77
There is a similar [Support Table](support_table.md), sorted alphabetically, that lists both supported and un-supported functions.
88

9-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.42/dist/katex.min.css" integrity="sha384-DVShYR21zvUU4zL2VjLlIbYSeiS43grntDO/Sm1DwmGGXKxGmvBlXWZ9lnyKhota" crossorigin="anonymous">
9+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.43/dist/katex.min.css" integrity="sha384-GN/+TZ6J/TdzuQrKFjIgwzaM0nkbGRiCBnJ9i+CmaynUcJDRE3u6Frp/8oj/lBze" crossorigin="anonymous">
1010
<style>
1111
p {overflow-wrap: break-word;}
1212
table tr,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "katex",
3-
"version": "0.16.42",
3+
"version": "0.16.43",
44
"description": "Fast math typesetting for the web.",
55
"main": "dist/katex.js",
66
"types": "types/katex.d.ts",

0 commit comments

Comments
 (0)