Pressbooks\Modules\Export\Epub\Epub3::isMathML PHP Метод

isMathML() защищенный Метод

Check for existence of scripting MathML elements
protected isMathML ( string $html ) : boolean
$html string
Результат boolean
    protected function isMathML($html)
    {
        foreach ($this->MathMLTags as $tag) {
            if (false !== stripos($html, "<{$tag}>")) {
                return true;
            }
        }
        return false;
    }