我们如何在AMP网站上实现MathJax?

问题描述 投票:2回答:1

我们能否在AMP网站上使用MathJax。由于我们有很多数学内容,因此我们需要MathJax.js。如果是,我们如何实施?

mathjax
1个回答
1
投票

将此添加到头部

 <script async custom-element="amp-mathml" src="https://cdn.ampproject.org/v0/amp-mathml-0.1.js"></script>

将此内容包含在正文中


  <amp-mathml layout="container" data-formula="`<%= yourMathjax %>`">
      </amp-mathml>

这就是我们在https://amp.doubtnut.com使用Mathjax的方式。我们正在使用ejs作为模板引擎

© www.soinside.com 2019 - 2024. All rights reserved.