mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-06 11:48:41 +00:00
chore: Spelling (#3762)
* spelling: analysis Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: calculate Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: calligraphic Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: compatibility Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: corresponding Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: devanagari Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: display Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: empirically Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: environment Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: from Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: gatsby Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: glyph Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: hlines Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: itself Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: javascript Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: multiple Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: necessary Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: nonexistent Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: precedence Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: respectively Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: retrieved Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: similarly Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: simultaneously Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: stretch Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: surprisingly Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: the Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: unambiguously Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: vinculum Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: which Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * Restore nonexistsOK --------- Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> Co-authored-by: Erik Demaine <edemaine@mit.edu>
This commit is contained in:
@@ -1409,9 +1409,9 @@ describe("A TeX-compliant parser", function() {
|
||||
r`\frac x \sqrt y`,
|
||||
r`\frac \mathllap x y`,
|
||||
r`\frac x \mathllap y`,
|
||||
// This actually doesn't work in real TeX, but it is suprisingly
|
||||
// This actually doesn't work in real TeX, but it is surprisingly
|
||||
// hard to get this to correctly work. So, we take hit of very small
|
||||
// amounts of non-compatiblity in order for the rest of the tests to
|
||||
// amounts of non-compatibility in order for the rest of the tests to
|
||||
// work
|
||||
// r`\llap \frac x y`,
|
||||
r`\mathllap \mathllap x`,
|
||||
|
@@ -62,15 +62,15 @@ describe("unicode", function() {
|
||||
expect`여보세요`.not.toParse(strictSettings);
|
||||
});
|
||||
|
||||
it("should build Devangari inside \\text{}", function() {
|
||||
it("should build Devanagari inside \\text{}", function() {
|
||||
expect`\text{नमस्ते}`.toBuild();
|
||||
});
|
||||
|
||||
it("should build Devangari outside \\text{}", function() {
|
||||
it("should build Devanagari outside \\text{}", function() {
|
||||
expect`नमस्ते`.toBuild(nonstrictSettings);
|
||||
});
|
||||
|
||||
it("should not parse Devangari outside \\text{} with strict", function() {
|
||||
it("should not parse Devanagari outside \\text{} with strict", function() {
|
||||
expect`नमस्ते`.not.toParse(strictSettings);
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user