Kolaru / MathTeXEngine.jl

A latex math mode engine in pure Julia.
MIT License
97 stars 19 forks source link

MathML support #4

Open jtrakk opened 3 years ago

jtrakk commented 3 years ago

MathML is the next generation of math display for the web. There are several tools for converting Latex code to MathML code, but there are also other languages that can convert to MathML. I am wondering if the parsing and rendering engines could be separated out so we can be agnostic about the input language, process an abstract math element, and render into Makie.

Kolaru commented 3 years ago

The parsing and engines are already separated, and linked by an abstract representation. So if you can parse MathML to the internal representation (nested TeXExpr) the layouting can be done straightforwardly.