Skip to content

Commit 6ffad4d

Browse files
authored
Merge pull request #1061 from drgrice1/pgml-tag-tex-tweak
Don't wrap the TeX for a PGML tag block in braces.
2 parents 4822139 + 09b1de0 commit 6ffad4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macros/core/PGML.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1822,7 +1822,7 @@ sub Tag {
18221822
} elsif ($item->{tex}) {
18231823
($tex_begin, $tex_end) = ("\\begin{$item->{tex}}", "\\end{$item->{tex}}");
18241824
}
1825-
return '{' . ($tex_begin // '') . $self->string($item) . ($tex_end // '') . '}';
1825+
return ($tex_begin // '') . $self->string($item) . ($tex_end // '');
18261826
}
18271827

18281828
######################################################################

0 commit comments

Comments
 (0)