Open
Description
Is your feature request related to a problem? Please describe.
Similar question to Is there a way to override LaTeX's errors about double subscripts and superscripts?
When one writes
a^b^c, a_b_c
or
a^b'
MathJax gives an error message complaining about multiple super/subscripts.
Is there a way to override the error and have MathJax output
a^{bc} a_{bc} {a^b}'
Describe the solution you'd like
Is there a way to redefine ^ and _ to append an empty {}
? like in LaTeX:
\catcode`\^ = 13 \def^#1{\sp{#1}{}}
\catcode`\_ = 13 \def_#1{\sb{#1}{}}