We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d2a44c + 363c672 commit 48139d1Copy full SHA for 48139d1
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