正在运行sphinx-quickstart
我被问到:
> Name prefix for templates and static dir [_]:
默认值为_
,但我不需要前缀。
如何在提示输入中插入空值?
答案 0 :(得分:0)
调用sphinx-quickstart --dot=
。然后该选项将不会出现在提示中,您的conf.py
将设置配置值:
templates_path = ['templates']
html_static_path = ['static']
...以及您指定的其他构建器。
您也可以在conf.py
之后编辑这些值。
或者,当您使用-D
option调用Sphinx时,您可以覆盖conf.py
中的选项。
sphinx-build [options] sourcedir builddir [filenames]
sphinx-build templates_path=templates html_static_path=static sourcedir builddir [filenames]