Hi,
When I try to insert a MathML formula through the HTML editor, it gets transformed into the raw formula and all MathML tags disappear. I'm new both to ProcessWire and to MathML though, so maybe I missed something. I copypasted the following lines as a test :
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'>
<msup>
<mi>e</mi>
<mrow>
<mn>2</mn>
<mi>x</mi>
<mo>+</mo>
<mn>1</mn>
</mrow>
</msup>
</math>
After saving the page it becomes simply "e2x+1" in the HTML page.
So, is there something (e.g. automatic HTML tag checking) preventing the insertion of MathML code ? If so, how can I work it around ?
Thanks.