Skip to content

Commit 543fc09

Browse files
committed
Make prettier happy
1 parent fbb7b7b commit 543fc09

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ts/input/tex/base/BaseItems.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,10 @@ export class ArrayItem extends BaseItem {
12141214
entry = '\\text{' + entry.trim() + '}';
12151215
}
12161216
if (start || end || ralign) {
1217-
if (++this.templateSubs > parser.configuration.options.maxTemplateSubtitutions) {
1217+
if (
1218+
++this.templateSubs >
1219+
parser.configuration.options.maxTemplateSubtitutions
1220+
) {
12181221
throw new TexError(
12191222
'MaxTemplateSubs',
12201223
'Maximum template substitutions exceeded; ' +

0 commit comments

Comments
 (0)