We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbb7b7b commit 543fc09Copy full SHA for 543fc09
1 file changed
ts/input/tex/base/BaseItems.ts
@@ -1214,7 +1214,10 @@ export class ArrayItem extends BaseItem {
1214
entry = '\\text{' + entry.trim() + '}';
1215
}
1216
if (start || end || ralign) {
1217
- if (++this.templateSubs > parser.configuration.options.maxTemplateSubtitutions) {
+ if (
1218
+ ++this.templateSubs >
1219
+ parser.configuration.options.maxTemplateSubtitutions
1220
+ ) {
1221
throw new TexError(
1222
'MaxTemplateSubs',
1223
'Maximum template substitutions exceeded; ' +
0 commit comments