Fix error value in columnspacing attribute in mtable

Bug: T349906
Change-Id: I4f5e472b37219ebab165dfbf6f364fd4d41146b9
This commit is contained in:
Stegmujo 2023-10-27 13:39:09 +00:00
parent 413b21d3be
commit 184fcf44cb
No known key found for this signature in database
GPG key ID: BB616B7CC84186BE

View file

@ -131,7 +131,7 @@ class BaseParsing {
$mrow = new MMLmrow();
// tbd how are the table args composed ?
$tableArgs = [ "columnalign" => "right",
"columnspacing" => "", "displaystyle" => "true", "rowspacing" => "3pt" ];
"columnspacing" => "0em", "displaystyle" => "true", "rowspacing" => "3pt" ];
$mtable = new MMLmtable( "", $tableArgs );
$mtr = new MMLmtr();
$mtd = new MMLmtd();
@ -167,7 +167,7 @@ class BaseParsing {
$direction = ( $name == "aligned" ) ? "left" : "right";
$tableArgs = [ "columnalign" => $direction,
"columnspacing" => "", "displaystyle" => "true", "rowspacing" => "3pt" ];
"columnspacing" => "0em", "displaystyle" => "true", "rowspacing" => "3pt" ];
$mtable = new MMLmtable( "", $tableArgs );
$mtr = new MMLmtr();
$mtd = new MMLmtd();