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

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

最佳答案

如果您想在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默认使用其主题,因此无需指定主题。

关于html - 如何获取源代码以阅读docs html模板?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29666752/

10-09 22:03