Commit node_modules

This commit is contained in:
Will Faught
2023-03-27 20:36:01 -07:00
parent 53a30a4c3e
commit 18ea53bb81
2693 changed files with 193960 additions and 70 deletions

18
paige/node_modules/katex/src/unicodeAccents.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
// Mapping of Unicode accent characters to their LaTeX equivalent in text and
// math mode (when they exist).
// This exports a CommonJS module, allowing to be required in unicodeSymbols
// without transpiling.
module.exports = {
'\u0301': {text: "\\'", math: '\\acute'},
'\u0300': {text: '\\`', math: '\\grave'},
'\u0308': {text: '\\"', math: '\\ddot'},
'\u0303': {text: '\\~', math: '\\tilde'},
'\u0304': {text: '\\=', math: '\\bar'},
'\u0306': {text: '\\u', math: '\\breve'},
'\u030c': {text: '\\v', math: '\\check'},
'\u0302': {text: '\\^', math: '\\hat'},
'\u0307': {text: '\\.', math: '\\dot'},
'\u030a': {text: '\\r', math: '\\mathring'},
'\u030b': {text: '\\H'},
'\u0327': {text: '\\c'},
};