On a large page with many mathml tags, that also uses annotatorjs the math intermittently reverts to browser rendering, or renders with MathJax, but the context menu does not appear.
Annotatorjs causes Mathjax to fail intermittently
90 views Asked by Neil Stevens At
1
Annotator js removes script tags from the document, to avoid them re-running when it wraps the content. Mathjax stores the original mathml tags code in a script tag with type="math/mathml".
Options include
this.element.find('script').remove();
tothis.element.find('script[type!="math/mml"]').remove();