Skip to content

Commit fe4921f

Browse files
committed
Fix for prettier
1 parent 037f876 commit fe4921f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts/input/tex/Tags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ export class AbstractTags implements Tags {
571571
? format
572572
: format.match(/^(\(|\[|\{)(.*)(\}|\]|\))$/)?.slice(1) || [format];
573573
const mml = new TexParser(
574-
tag.map((part) => part ? `\\text{${part}}` : '').join(''),
574+
tag.map((part) => (part ? `\\text{${part}}` : '')).join(''),
575575
{},
576576
this.configuration
577577
).mml();

0 commit comments

Comments
 (0)