ASCIIMath to MathML Converter for PHP
This repository is a fork of Zefling/ASCIIMathPHP
For original credits see: https://github.com/Zefling/ASCIIMathPHP/blob/master/ASCIIMathPHP-2.1.class.php
private function makeMathMLRaw($string): string
{
$asciiMathPhp = new \ASCIIMath2MathML\ASCIIMathPHP();
$asciiMathPhp->setExpr($string);
$asciiMathPhp->genMathML();
return $asciiMathPhp->getMathML();
}
Via composer:
{
"require": {
"resist/asciimath2mathml": "dev-master"
}
}