mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-23 23:25:02 +00:00
Fix error value in columnspacing attribute in mtable
Bug: T349906 Change-Id: I4f5e472b37219ebab165dfbf6f364fd4d41146b9
This commit is contained in:
parent
413b21d3be
commit
184fcf44cb
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue