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

17 行
391 B
PHP

<?php
namespace MediaWiki\Extension\Math\WikiTexVC\MMLnodes;
/**
* Presentation MathML 3 Element
* name: "mroot"
* description: "form a radical with specified index"
* category: "General Layout Schemata"
*/
class MMLmroot extends MMLbase {
public function __construct( string $texclass = "", array $attributes = [] ) {
parent::__construct( "mroot", $texclass, $attributes );
}
}