我正在使用Sphinx生成我的一些项目的文档。我编写了一个简单的构建脚本,它克隆了他们所有的 git repos,找到 docs 目录并执行:
sphinx-build -b html -D html_theme=treffynnon -D html_theme_path=/home/user/_themes /home/user/sphinx/src /home/user/output/docs
不幸的是,虽然html_theme
设置正确,html_theme_path
但没有。这当然会导致 Sphinx 在找不到主题时吐出错误。
我应该如何格式化这个命令?甚至可以以html_theme_path
这种方式指定吗?