Skip to content

Commit d55b576

Browse files
committed
Fix formatting
1 parent 31ffd11 commit d55b576

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ts/output/common.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,11 @@ export abstract class CommonOutputJax<
425425
}
426426
const makeBreaks = this.options.linebreaks.inline && !math.display;
427427
let inlineMarked = !!math.root.getProperty('inlineMarked');
428-
if (inlineMarked && (!makeBreaks || this.forceInlineBreaks !== math.root.getProperty('inlineForced'))) {
428+
if (
429+
inlineMarked &&
430+
(!makeBreaks ||
431+
this.forceInlineBreaks !== math.root.getProperty('inlineForced'))
432+
) {
429433
this.unmarkInlineBreaks(math.root);
430434
math.root.removeProperty('inlineMarked');
431435
math.root.removeProperty('inlineForced');

0 commit comments

Comments
 (0)