Hi, I'm working with Mathquill, what happens is that I have this expression format.
sqrt[]{}
which can be
sqrt[3]{4+5-8}
or any number within the brackets and braces, what I did was modify the template of the api of the root that is:
_.textTemplate = ['sqrt[',']{','}'];
for this
_.textTemplate = ['(',')^(1/',')'];
so the result is:
(3)^(1/4+5-8)
The problem is that the values go the other way, and should be shown like this:
(4+5-8)^(1/3)
I need your help please