mediawiki-extensions-Math/src/WikiTexVC/MMLnodes/MMLmath.php
Stegmujo a82727f61f
Rename TexVC in PHP to WikiTexVC
Change-Id: Idd98205ea291640b01946374f15c807da7fc26e5
2023-11-24 16:41:30 +01:00

12 行
295 B
PHP

<?php
namespace MediaWiki\Extension\Math\WikiTexVC\MMLnodes;
class MMLmath extends MMLbase {
public function __construct( string $texclass = "", $attributes = [] ) {
$attributes["xmlns"] = "http://www.w3.org/1998/Math/MathML";
parent::__construct( "math", $texclass, $attributes );
}
}