You are here

public static property Elements::$mathml in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/masterminds/html5/src/HTML5/Elements.php \Masterminds\HTML5\Elements::mathml

The MathML elements. See http://www.w3.org/wiki/MathML/Elements.

In our case we are only concerned with presentation MathML and not content MathML. There is a nice list of this subset at https://developer.mozilla.org/en-US/docs/MathML/Element.

Type: array

File

vendor/masterminds/html5/src/HTML5/Elements.php, line 217

Class

Elements
This class provides general information about HTML5 elements, including syntactic and semantic issues. Parsers and serializers can use this class as a reference point for information about the rules of various HTML5 elements.

Namespace

Masterminds\HTML5

Code

public static $mathml = array(
  "maction" => 1,
  "maligngroup" => 1,
  "malignmark" => 1,
  "math" => 1,
  "menclose" => 1,
  "merror" => 1,
  "mfenced" => 1,
  "mfrac" => 1,
  "mglyph" => 1,
  "mi" => 1,
  "mlabeledtr" => 1,
  "mlongdiv" => 1,
  "mmultiscripts" => 1,
  "mn" => 1,
  "mo" => 1,
  "mover" => 1,
  "mpadded" => 1,
  "mphantom" => 1,
  "mroot" => 1,
  "mrow" => 1,
  "ms" => 1,
  "mscarries" => 1,
  "mscarry" => 1,
  "msgroup" => 1,
  "msline" => 1,
  "mspace" => 1,
  "msqrt" => 1,
  "msrow" => 1,
  "mstack" => 1,
  "mstyle" => 1,
  "msub" => 1,
  "msup" => 1,
  "msubsup" => 1,
  "mtable" => 1,
  "mtd" => 1,
  "mtext" => 1,
  "mtr" => 1,
  "munder" => 1,
  "munderover" => 1,
);