Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove all of the default autoOperatorNames. #37

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@openwebwork/mathquill",
"description": "Easily type math in your webapp",
"version": "0.11.0-beta.4",
"version": "0.11.0-beta.5",
"license": "MPL-2.0",
"repository": {
"type": "git",
Expand Down
8 changes: 3 additions & 5 deletions src/commands/math/basicSymbols.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Symbols for Basic Mathematics

import { type Direction, noop, bindMixin, LatexCmds, CharCmds } from 'src/constants';
import { type Direction, noop, bindMixin, LatexCmds, CharCmds, BuiltInOpNames } from 'src/constants';
import { Options } from 'src/options';
import type { Cursor } from 'src/cursor';
import { Parser } from 'services/parser.util';
Expand Down Expand Up @@ -40,10 +40,8 @@ class OperatorName extends Symbol {
}
}

for (const fn in new Options().autoOperatorNames) {
if (fn !== '_maxLength') {
LatexCmds[fn] = OperatorName;
}
for (const fn in BuiltInOpNames) {
LatexCmds[fn] = OperatorName;
}

LatexCmds.operatorname = class extends MathCommand {
Expand Down
34 changes: 1 addition & 33 deletions src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,39 +129,7 @@ export class Options {
}

// The set of operator names that MathQuill auto-unitalicizes.
static #autoOperatorNames: NamesWLength = (() => {
const ops: NamesWLength = { _maxLength: 9 };

// Standard operators
for (const op of [
'arg',
'det',
'dim',
'gcd',
'hom',
'ker',
'lg',
'lim',
'max',
'min',
'sup',
'limsup',
'liminf',
'injlim',
'projlim',
'Pr'
]) {
ops[op] = 1;
}

// compat with some of the nonstandard LaTeX exported by MathQuill
// before #247. None of these are real LaTeX commands so, seems safe
for (const op of ['gcf', 'hcf', 'lcm', 'proj', 'span']) {
ops[op] = 1;
}

return ops;
})();
static #autoOperatorNames: NamesWLength = { _maxLength: 0 };
#_autoOperatorNames?: NamesWLength;
get autoOperatorNames(): NamesWLength {
return this.#_autoOperatorNames ?? Options.#autoOperatorNames;
Expand Down
2 changes: 2 additions & 0 deletions test/typing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ suite('typing with auto-replaces', function () {
});

test('auto-operator names', function () {
mq.options.addAutoOperatorNames('ker');
mq.typedText('\\ker^2');
assertLatex('\\ker^2');
mq.options.removeAutoOperatorNames('ker');
});

test('nonexistent LaTeX command', function () {
Expand Down