We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c7794e commit 363c672Copy full SHA for 363c672
1 file changed
ts/core/MmlTree/MmlNodes/mo.ts
@@ -289,18 +289,6 @@ export class MmlMo extends AbstractMmlTokenNode {
289
this.texClass = TEXCLASS.CLOSE;
290
}
291
292
- if (this.getText() === '\u2061') {
293
- //
294
- // Force previous node to be TEXCLASS.OP and skip this node
295
296
- if (prev && prev.getProperty('texClass') === undefined &&
297
- prev.attributes.get('mathvariant') !== 'italic') {
298
- prev.texClass = TEXCLASS.OP;
299
- prev.setProperty('fnOP', true);
300
- }
301
- this.texClass = this.prevClass = TEXCLASS.NONE;
302
- return prev;
303
304
return this.adjustTeXclass(prev);
305
306
/**
0 commit comments