resist / asciimath2mathml
ASCIIMath to MathML Converter for PHP
Installs: 581
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/resist/asciimath2mathml
Requires
- php: >=7.4
This package is auto-updated.
Last update: 2025-08-30 21:28:30 UTC
README
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
Usage
private function makeMathMLRaw($string): string { $asciiMathPhp = new \ASCIIMath2MathML\ASCIIMathPHP(); $asciiMathPhp->setExpr($string); $asciiMathPhp->genMathML(); return $asciiMathPhp->getMathML(); }
Installation
Via composer:
{ "require": { "resist/asciimath2mathml": "dev-master" } }