插入空值作为输入

时间:2017-10-02 12:33:10

标签: python python-sphinx

正在运行sphinx-quickstart我被问到:

> Name prefix for templates and static dir [_]:

默认值为_,但我不需要前缀。

如何在提示输入中插入空值?

1 个答案:

答案 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]