katex 0.16.27 → 0.16.28
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 +2 -2
- 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-swap.css +1 -1
- package/dist/katex-swap.min.css +1 -1
- 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 +2 -1
- package/src/Parser.js +1 -1
package/dist/katex.mjs
CHANGED
|
@@ -17350,7 +17350,7 @@ class Parser {
|
|
|
17350
17350
|
* Parses an "expression", which is a list of atoms.
|
|
17351
17351
|
*
|
|
17352
17352
|
* `breakOnInfix`: Should the parsing stop when we hit infix nodes? This
|
|
17353
|
-
* happens when functions have higher precedence
|
|
17353
|
+
* happens when functions have higher precedence than infix
|
|
17354
17354
|
* nodes in implicit parses.
|
|
17355
17355
|
*
|
|
17356
17356
|
* `breakOnTokenText`: The text of the token that the expression should end
|
|
@@ -18443,7 +18443,7 @@ var renderToHTMLTree = function renderToHTMLTree(expression, options) {
|
|
|
18443
18443
|
}
|
|
18444
18444
|
};
|
|
18445
18445
|
|
|
18446
|
-
var version = "0.16.
|
|
18446
|
+
var version = "0.16.28";
|
|
18447
18447
|
var __domTree = {
|
|
18448
18448
|
Span,
|
|
18449
18449
|
Anchor,
|
package/package.json
CHANGED
package/src/Parser.js
CHANGED
|
@@ -178,7 +178,7 @@ export default class Parser {
|
|
|
178
178
|
* Parses an "expression", which is a list of atoms.
|
|
179
179
|
*
|
|
180
180
|
* `breakOnInfix`: Should the parsing stop when we hit infix nodes? This
|
|
181
|
-
* happens when functions have higher precedence
|
|
181
|
+
* happens when functions have higher precedence than infix
|
|
182
182
|
* nodes in implicit parses.
|
|
183
183
|
*
|
|
184
184
|
* `breakOnTokenText`: The text of the token that the expression should end
|