Update Katex to 0.16.8

master
Will Faught 2 years ago
parent 7b344ec16d
commit 595f0bd37d

@ -1091,7 +1091,7 @@ The following NPM packages are used:
- [bootstrap](https://www.npmjs.com/package/bootstrap/v/5.3.2) - [bootstrap](https://www.npmjs.com/package/bootstrap/v/5.3.2)
- [bootstrap-icons](https://www.npmjs.com/package/bootstrap-icons/v/1.11.0) - [bootstrap-icons](https://www.npmjs.com/package/bootstrap-icons/v/1.11.0)
- [katex](https://www.npmjs.com/package/katex/v/0.16.7) - [katex](https://www.npmjs.com/package/katex/v/0.16.8)
Hugo names, HTML names, CSS names, and JavaScript names that begin with "paige" capitalized in any way, Hugo names, HTML names, CSS names, and JavaScript names that begin with "paige" capitalized in any way,
optionally prefixed with one or more underscores, are reserved. optionally prefixed with one or more underscores, are reserved.

@ -1,6 +1,5 @@
{ {
"name": "paige", "name": "paige",
"version": "0.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
@ -56,9 +55,9 @@
} }
}, },
"node_modules/katex": { "node_modules/katex": {
"version": "0.16.7", "version": "0.16.8",
"resolved": "https://registry.npmjs.org/katex/-/katex-0.16.7.tgz", "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.8.tgz",
"integrity": "sha512-Xk9C6oGKRwJTfqfIbtr0Kes9OSv6IFsuhFGc7tW4urlpMJtuh+7YhzU6YEG9n8gmWKcMAFzkp7nr+r69kV0zrA==", "integrity": "sha512-ftuDnJbcbOckGY11OO+zg3OofESlbR5DRl2cmN8HeWeeFIV7wTXvAOx8kEjZjobhA+9wh2fbKeO6cdcA9Mnovg==",
"funding": [ "funding": [
"https://opencollective.com/katex", "https://opencollective.com/katex",
"https://github.com/sponsors/katex" "https://github.com/sponsors/katex"

@ -1,4 +1,10 @@
# [<img src="https://katex.org/img/katex-logo-black.svg" width="130" alt="KaTeX">](https://katex.org/) <h1><a href="https://katex.org/">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://katex.org/img/katex-logo.svg">
<img alt="KaTeX" width=130 src="https://katex.org/img/katex-logo-black.svg">
</picture>
</a></h1>
[![npm](https://img.shields.io/npm/v/katex.svg)](https://www.npmjs.com/package/katex) [![npm](https://img.shields.io/npm/v/katex.svg)](https://www.npmjs.com/package/katex)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![CI](https://github.com/KaTeX/KaTeX/workflows/CI/badge.svg?branch=main&event=push)](https://github.com/KaTeX/KaTeX/actions?query=workflow%3ACI) [![CI](https://github.com/KaTeX/KaTeX/workflows/CI/badge.svg?branch=main&event=push)](https://github.com/KaTeX/KaTeX/actions?query=workflow%3ACI)
@ -31,13 +37,13 @@ Try out KaTeX [on the demo page](https://katex.org/#demo)!
<!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly --> <!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly -->
<html> <html>
<head> <head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.css" integrity="sha384-3UiQGuEI4TTMaFmGIZumfRPtfKQ3trwQE2JgosJxCnGmQpL/lJdjpcHkaaFwHlcI" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css" integrity="sha384-GvrOXuhMATgEsSwCs4smul74iXGOixntILdUW9XmUC6+HX0sLNAK3q71HotJqlAn" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering --> <!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.js" integrity="sha384-G0zcxDFp5LWZtDuRMnBkk3EphCK1lhEf4UEyEM693ka574TZGwo4IWwS6QLzM/2t" crossorigin="anonymous"></script> <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.js" integrity="sha384-cpW21h6RZv/phavutF+AuVYrr+dA8xD9zs6FwLpaCct6O9ctzYFfFr4dgmgccOTx" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: --> <!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/auto-render.min.js" integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous" <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/auto-render.min.js" integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script> onload="renderMathInElement(document.body);"></script>
</head> </head>
... ...

@ -18,7 +18,7 @@ This extension isn't part of KaTeX proper, so the script should be separately
included in the page. included in the page.
```html ```html
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/copy-tex.min.js" integrity="sha384-ww/583aHhxWkz5DEVn6OKtNiIaLi2iBRNZXfJRiY1Ai7tnJ9UXpEsyvOITVpTl4A" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/copy-tex.min.js" integrity="sha384-ww/583aHhxWkz5DEVn6OKtNiIaLi2iBRNZXfJRiY1Ai7tnJ9UXpEsyvOITVpTl4A" crossorigin="anonymous"></script>
``` ```
(Note that, as of KaTeX 0.16.0, there is no longer a corresponding CSS file.) (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')`.
ECMAScript module is also available: ECMAScript module is also available:
```html ```html
<script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/copy-tex.mjs" integrity="sha384-bVEnwt0PtX+1EuJoOEcm4rgTUWvb2ILTdjHfI1gUe/r5fdqrTcQaUuRdHG2DciuQ" crossorigin="anonymous"></script> <script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/copy-tex.mjs" integrity="sha384-bVEnwt0PtX+1EuJoOEcm4rgTUWvb2ILTdjHfI1gUe/r5fdqrTcQaUuRdHG2DciuQ" crossorigin="anonymous"></script>
``` ```

@ -11,7 +11,7 @@ included in the page, in addition to KaTeX.
Load the extension by adding the following line to your HTML file. Load the extension by adding the following line to your HTML file.
```html ```html
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/mathtex-script-type.min.js" integrity="sha384-jiBVvJ8NGGj5n7kJaiWwWp9AjC+Yh8rhZY3GtAX8yU28azcLgoRo4oukO87g7zDT" crossorigin="anonymous"></script> <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/mathtex-script-type.min.js" integrity="sha384-jiBVvJ8NGGj5n7kJaiWwWp9AjC+Yh8rhZY3GtAX8yU28azcLgoRo4oukO87g7zDT" crossorigin="anonymous"></script>
``` ```
You can download the script and use it locally, or from a local KaTeX installation instead. You can download the script and use it locally, or from a local KaTeX installation instead.
@ -23,9 +23,9 @@ Then, in the body, we use a `math/tex` script to typeset the equation `x+\sqrt{1
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.css" integrity="sha384-3UiQGuEI4TTMaFmGIZumfRPtfKQ3trwQE2JgosJxCnGmQpL/lJdjpcHkaaFwHlcI" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css" integrity="sha384-GvrOXuhMATgEsSwCs4smul74iXGOixntILdUW9XmUC6+HX0sLNAK3q71HotJqlAn" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.js" integrity="sha384-G0zcxDFp5LWZtDuRMnBkk3EphCK1lhEf4UEyEM693ka574TZGwo4IWwS6QLzM/2t" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.js" integrity="sha384-cpW21h6RZv/phavutF+AuVYrr+dA8xD9zs6FwLpaCct6O9ctzYFfFr4dgmgccOTx" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/mathtex-script-type.min.js" integrity="sha384-jiBVvJ8NGGj5n7kJaiWwWp9AjC+Yh8rhZY3GtAX8yU28azcLgoRo4oukO87g7zDT" crossorigin="anonymous"></script> <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/mathtex-script-type.min.js" integrity="sha384-jiBVvJ8NGGj5n7kJaiWwWp9AjC+Yh8rhZY3GtAX8yU28azcLgoRo4oukO87g7zDT" crossorigin="anonymous"></script>
</head> </head>
<body> <body>
<script type="math/tex">x+\sqrt{1-x^2}</script> <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
ECMAScript module is also available: ECMAScript module is also available:
```html ```html
<script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/mathtex-script-type.mjs" integrity="sha384-4EJvC5tvqq9XJxXvdD4JutBokuFw/dCe2AB4gZ9sRpwFFXECpL3qT43tmE0PkpVg" crossorigin="anonymous"></script> <script type="module" src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/mathtex-script-type.mjs" integrity="sha384-4EJvC5tvqq9XJxXvdD4JutBokuFw/dCe2AB4gZ9sRpwFFXECpL3qT43tmE0PkpVg" crossorigin="anonymous"></script>

@ -7,7 +7,7 @@ This extension adds to KaTeX the `\ce` and `\pu` functions from the [mhchem](htt
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`. 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`.
```html ```html
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/mhchem.min.js" integrity="sha384-ifpG+NlgMq0kvOSGqGQxW1mJKpjjMDmZdpKGq3tbvD3WPhyshCEEYClriK/wRVU0" crossorigin="anonymous"></script> <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/mhchem.min.js" integrity="sha384-ifpG+NlgMq0kvOSGqGQxW1mJKpjjMDmZdpKGq3tbvD3WPhyshCEEYClriK/wRVU0" crossorigin="anonymous"></script>
``` ```
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. 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.

@ -1,4 +1,10 @@
# [<img src="https://katex.org/img/katex-logo-black.svg" width="130" alt="KaTeX">](https://katex.org/) <h1><a href="https://katex.org/">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://katex.org/img/katex-logo.svg">
<img alt="KaTeX" width=130 src="https://katex.org/img/katex-logo-black.svg">
</picture>
</a></h1>
[![npm](https://img.shields.io/npm/v/katex.svg)](https://www.npmjs.com/package/katex) [![npm](https://img.shields.io/npm/v/katex.svg)](https://www.npmjs.com/package/katex)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![CI](https://github.com/KaTeX/KaTeX/workflows/CI/badge.svg?branch=main&event=push)](https://github.com/KaTeX/KaTeX/actions?query=workflow%3ACI) [![CI](https://github.com/KaTeX/KaTeX/workflows/CI/badge.svg?branch=main&event=push)](https://github.com/KaTeX/KaTeX/actions?query=workflow%3ACI)
@ -31,13 +37,13 @@ Try out KaTeX [on the demo page](https://katex.org/#demo)!
<!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly --> <!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly -->
<html> <html>
<head> <head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.css" integrity="sha384-3UiQGuEI4TTMaFmGIZumfRPtfKQ3trwQE2JgosJxCnGmQpL/lJdjpcHkaaFwHlcI" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css" integrity="sha384-GvrOXuhMATgEsSwCs4smul74iXGOixntILdUW9XmUC6+HX0sLNAK3q71HotJqlAn" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering --> <!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.js" integrity="sha384-G0zcxDFp5LWZtDuRMnBkk3EphCK1lhEf4UEyEM693ka574TZGwo4IWwS6QLzM/2t" crossorigin="anonymous"></script> <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.js" integrity="sha384-cpW21h6RZv/phavutF+AuVYrr+dA8xD9zs6FwLpaCct6O9ctzYFfFr4dgmgccOTx" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: --> <!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/auto-render.min.js" integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous" <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/contrib/auto-render.min.js" integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script> onload="renderMathInElement(document.body);"></script>
</head> </head>
... ...

@ -132,7 +132,7 @@
border-color: currentColor; border-color: currentColor;
} }
.katex .katex-version::after { .katex .katex-version::after {
content: "0.16.7"; content: "0.16.8";
} }
.katex .katex-mathml { .katex .katex-mathml {
/* Accessibility hack to only show to screen readers /* Accessibility hack to only show to screen readers

@ -50,13 +50,19 @@ __webpack_require__.d(__webpack_exports__, {
* If possible, a caller should provide a Token or ParseNode with information * If possible, a caller should provide a Token or ParseNode with information
* about where in the source string the problem occurred. * about where in the source string the problem occurred.
*/ */
var ParseError = // Error position based on passed-in Token or ParseNode. var ParseError = // Error start position based on passed-in Token or ParseNode.
// Length of affected text based on passed-in Token or ParseNode.
// The underlying error message without any context added.
function ParseError(message, // The error message function ParseError(message, // The error message
token // An object providing position information token // An object providing position information
) { ) {
this.name = void 0;
this.position = void 0; this.position = void 0;
this.length = void 0;
this.rawMessage = void 0;
var error = "KaTeX parse error: " + message; var error = "KaTeX parse error: " + message;
var start; var start;
var end;
var loc = token && token.loc; var loc = token && token.loc;
if (loc && loc.start <= loc.end) { if (loc && loc.start <= loc.end) {
@ -65,7 +71,7 @@ token // An object providing position information
var input = loc.lexer.input; // Prepend some information var input = loc.lexer.input; // Prepend some information
start = loc.start; start = loc.start;
var end = loc.end; end = loc.end;
if (start === input.length) { if (start === input.length) {
error += " at end of input: "; error += " at end of input: ";
@ -95,14 +101,20 @@ token // An object providing position information
error += left + underlined + right; error += left + underlined + right;
} // Some hackery to make ParseError a prototype of Error } // Some hackery to make ParseError a prototype of Error
// See http://stackoverflow.com/a/8460753 // See http://stackoverflow.com/a/8460753
// $FlowFixMe
var self = new Error(error); var self = new Error(error);
self.name = "ParseError"; // $FlowFixMe self.name = "ParseError"; // $FlowFixMe
self.__proto__ = ParseError.prototype; // $FlowFixMe self.__proto__ = ParseError.prototype;
self.position = start; self.position = start;
if (start != null && end != null) {
self.length = end - start;
}
self.rawMessage = message;
return self; return self;
}; // $FlowFixMe More hackery }; // $FlowFixMe More hackery
@ -18695,7 +18707,7 @@ var renderToHTMLTree = function renderToHTMLTree(expression, options) {
/** /**
* Current KaTeX version * Current KaTeX version
*/ */
version: "0.16.7", version: "0.16.8",
/** /**
* Renders the given LaTeX into an HTML+MathML combination, and adds * Renders the given LaTeX into an HTML+MathML combination, and adds

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -90,13 +90,19 @@ class Token {
* about where in the source string the problem occurred. * about where in the source string the problem occurred.
*/ */
class ParseError { class ParseError {
// Error position based on passed-in Token or ParseNode. // Error start position based on passed-in Token or ParseNode.
// Length of affected text based on passed-in Token or ParseNode.
// The underlying error message without any context added.
constructor(message, // The error message constructor(message, // The error message
token // An object providing position information token // An object providing position information
) { ) {
this.name = void 0;
this.position = void 0; this.position = void 0;
this.length = void 0;
this.rawMessage = void 0;
var error = "KaTeX parse error: " + message; var error = "KaTeX parse error: " + message;
var start; var start;
var end;
var loc = token && token.loc; var loc = token && token.loc;
if (loc && loc.start <= loc.end) { if (loc && loc.start <= loc.end) {
@ -105,7 +111,7 @@ class ParseError {
var input = loc.lexer.input; // Prepend some information var input = loc.lexer.input; // Prepend some information
start = loc.start; start = loc.start;
var end = loc.end; end = loc.end;
if (start === input.length) { if (start === input.length) {
error += " at end of input: "; error += " at end of input: ";
@ -135,14 +141,20 @@ class ParseError {
error += left + underlined + right; error += left + underlined + right;
} // Some hackery to make ParseError a prototype of Error } // Some hackery to make ParseError a prototype of Error
// See http://stackoverflow.com/a/8460753 // See http://stackoverflow.com/a/8460753
// $FlowFixMe
var self = new Error(error); var self = new Error(error);
self.name = "ParseError"; // $FlowFixMe self.name = "ParseError"; // $FlowFixMe
self.__proto__ = ParseError.prototype; // $FlowFixMe self.__proto__ = ParseError.prototype;
self.position = start; self.position = start;
if (start != null && end != null) {
self.length = end - start;
}
self.rawMessage = message;
return self; return self;
} }
@ -18297,7 +18309,7 @@ var katex = {
/** /**
* Current KaTeX version * Current KaTeX version
*/ */
version: "0.16.7", version: "0.16.8",
/** /**
* Renders the given LaTeX into an HTML+MathML combination, and adds * Renders the given LaTeX into an HTML+MathML combination, and adds

@ -1,6 +1,6 @@
{ {
"name": "katex", "name": "katex",
"version": "0.16.7", "version": "0.16.8",
"description": "Fast math typesetting for the web.", "description": "Fast math typesetting for the web.",
"main": "dist/katex.js", "main": "dist/katex.js",
"exports": { "exports": {

@ -12,15 +12,21 @@ import type {AnyParseNode} from "./parseNode";
* about where in the source string the problem occurred. * about where in the source string the problem occurred.
*/ */
class ParseError { class ParseError {
name: "ParseError";
position: number | void; position: number | void;
// Error position based on passed-in Token or ParseNode. // Error start position based on passed-in Token or ParseNode.
length: number | void;
// Length of affected text based on passed-in Token or ParseNode.
rawMessage: string | void;
// The underlying error message without any context added.
constructor( constructor(
message: string, // The error message message: string, // The error message
token?: ?Token | AnyParseNode, // An object providing position information token?: ?Token | AnyParseNode, // An object providing position information
): Error { ): ParseError {
let error = "KaTeX parse error: " + message; let error = "KaTeX parse error: " + message;
let start; let start;
let end;
const loc = token && token.loc; const loc = token && token.loc;
if (loc && loc.start <= loc.end) { if (loc && loc.start <= loc.end) {
@ -31,7 +37,7 @@ class ParseError {
// Prepend some information // Prepend some information
start = loc.start; start = loc.start;
const end = loc.end; end = loc.end;
if (start === input.length) { if (start === input.length) {
error += " at end of input: "; error += " at end of input: ";
} else { } else {
@ -60,12 +66,16 @@ class ParseError {
// Some hackery to make ParseError a prototype of Error // Some hackery to make ParseError a prototype of Error
// See http://stackoverflow.com/a/8460753 // See http://stackoverflow.com/a/8460753
const self = new Error(error); // $FlowFixMe
const self: ParseError = new Error(error);
self.name = "ParseError"; self.name = "ParseError";
// $FlowFixMe // $FlowFixMe
self.__proto__ = ParseError.prototype; self.__proto__ = ParseError.prototype;
// $FlowFixMe
self.position = start; self.position = start;
if (start != null && end != null) {
self.length = end - start;
}
self.rawMessage = message;
return self; return self;
} }
} }

@ -1,6 +1,5 @@
{ {
"name": "paige", "name": "paige",
"version": "0.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
@ -63,9 +62,9 @@
} }
}, },
"node_modules/katex": { "node_modules/katex": {
"version": "0.16.7", "version": "0.16.8",
"resolved": "https://registry.npmjs.org/katex/-/katex-0.16.7.tgz", "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.8.tgz",
"integrity": "sha512-Xk9C6oGKRwJTfqfIbtr0Kes9OSv6IFsuhFGc7tW4urlpMJtuh+7YhzU6YEG9n8gmWKcMAFzkp7nr+r69kV0zrA==", "integrity": "sha512-ftuDnJbcbOckGY11OO+zg3OofESlbR5DRl2cmN8HeWeeFIV7wTXvAOx8kEjZjobhA+9wh2fbKeO6cdcA9Mnovg==",
"funding": [ "funding": [
"https://opencollective.com/katex", "https://opencollective.com/katex",
"https://github.com/sponsors/katex" "https://github.com/sponsors/katex"

@ -2,6 +2,6 @@
"dependencies": { "dependencies": {
"bootstrap": "^5.3.2", "bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.0", "bootstrap-icons": "^1.11.0",
"katex": "^0.16.7" "katex": "^0.16.8"
} }
} }

Loading…
Cancel
Save