We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31ffd11 commit d55b576Copy full SHA for d55b576
ts/output/common.ts
@@ -425,7 +425,11 @@ export abstract class CommonOutputJax<
425
}
426
const makeBreaks = this.options.linebreaks.inline && !math.display;
427
let inlineMarked = !!math.root.getProperty('inlineMarked');
428
- if (inlineMarked && (!makeBreaks || this.forceInlineBreaks !== math.root.getProperty('inlineForced'))) {
+ if (
429
+ inlineMarked &&
430
+ (!makeBreaks ||
431
+ this.forceInlineBreaks !== math.root.getProperty('inlineForced'))
432
+ ) {
433
this.unmarkInlineBreaks(math.root);
434
math.root.removeProperty('inlineMarked');
435
math.root.removeProperty('inlineForced');
0 commit comments