我通常使用某些扩展名,例如sphinxcontrib.bibtex
每个Sphinx
文档项目,这意味着我需要将扩展名添加到conf.py
每个项目的文件中。
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest',
'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage',
'sphinx.ext.pngmath', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode',
'sphinxcontrib.bibtex']
是否有一个简单的默认情况下将这些包含在内的内容conf.py
?