如何获取源代码以读取docs html模板?

时间:2015-04-16 06:19:52

标签: html css python-sphinx read-the-docs

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

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

1 个答案:

答案 0 :(得分:0)

如果您想在本地使用ReadTheDocs主题与Sphinx,您可以从下面的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默认使用其主题,因此无需指定它。