Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在具有许多 mathml 标记的大页面上,也使用 annotatorjs,数学会间歇性地恢复到浏览器呈现,或使用 MathJax 呈现,但不会出现上下文菜单。
Annotator js 从文档中删除脚本标签,以避免它们在包装内容时重新运行。Mathjax 将原始的 mathml 标记代码存储在 type="math/mathml" 的脚本标记中。
选项包括
this.element.find('script').remove();
this.element.find('script[type!="math/mml"]').remove();