从 Sphinx 生成的 github.io 页面中渲染 Mathjax 的问题

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

我正在使用 Sphinx我的 python 项目编写文档。

这是我的conf.py

数学在本地主机上渲染得很好,但是当部署在 github.io 上时,它似乎不起作用。

在本地主机上

在 github.io 上

注意:我添加了空的 .nojekyll 文件以便能够使用 Sphinx 模板。

我不知道什么可能会导致

githubpages
不渲染
mathjax
,即使它在本地计算机上渲染 find。

有什么想法吗???

python github-pages python-sphinx mathjax
1个回答
0
投票

conf.py
中,试试这个:

extensions = [
    'sphinx.ext.mathjax',
    ]

mathjax_path = 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
© www.soinside.com 2019 - 2024. All rights reserved.