0

如何获取阅读文档的 html 模板的源代码?我从 git hub 获得 sphinx 包,但我不知道 python 或如何继续使用该包

我只想要该模板的 HTML 和 css 文件,然后我将根据我的要求进行修改

4

1 回答 1

0

如果您想在 Sphinx 本地使用 ReadTheDocs 主题,您可以从下面的 Github 存储库中克隆/分叉代码。

来源:https ://github.com/snide/sphinx_rtd_theme

如果您还使用 readthedocs.org 构建文档,则需要在 conf.py 中输入以下内容以避免 RTD 构建过程出现问题:

# on_rtd is whether we are on readthedocs.org, this line of code 

grabbed   from docs.readthedocs.org
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'

if not on_rtd:  # only import and set the theme if we're building docs locally
    import sphinx_rtd_theme
    html_theme = 'sphinx_rtd_theme'
    html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]

否则,readthedocs.org 默认使用他们的主题,所以不需要指定它。

于 2016-03-10T02:57:08.220 回答