我有一个sveltejs SPA,我在其中加载一些mathml内容并通过mathjax显示它。 这是相关代码
async function hashChange() {
await renderContent();
console.log("content *NOT* rendered, but it should!");
MathJax.typeset();
console.log("content is rendered only now");
}
onMount(() => {
hashChange();
});
问题在于页面仅在MathJax.typeset()之后呈现,而我希望在renderContent()之后首先呈现原始mml,然后在MathJax.typeset()之后使用排版的mml进行刷新。 / p>
我尝试使用MathJax.typesetPromise(),但结果是相同的。
有什么建议吗?