We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34b1421 + 337df97 commit 910e2edCopy full SHA for 910e2ed
1 file changed
ts/core/MmlTree/MmlNodes/mo.ts
@@ -463,8 +463,8 @@ export class MmlMo extends AbstractMmlTokenNode {
463
for (const name of Object.keys(def[3] || {})) {
464
this.attributes.setInherited(name, def[3][name]);
465
}
466
- this.lspace = (def[0] + 1) / 18;
467
- this.rspace = (def[1] + 1) / 18;
+ this.lspace = ((def[0] || -1) + 1) / 18;
+ this.rspace = ((def[1] || -1) + 1) / 18;
468
469
470
/**
0 commit comments