Skip to content

Commit

Permalink
no warning on whitespace in texalignment string
Browse files Browse the repository at this point in the history
  • Loading branch information
drdrew42 committed Oct 9, 2023
1 parent b8df652 commit 5af7c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/ui/niceTables.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,7 @@ sub TableOptions {

sub ParseAlignment {
my $alignment = shift;
$alignment =~ s/\R//g;
$alignment =~ s/\s//g;

# first we parse things like *{20}{...} to expand them
my $pattern = qr/\*\{(\d+)\}\{(.*?)\}/;
Expand Down

0 comments on commit 5af7c55

Please sign in to comment.