【发布时间】:2012-12-27 20:02:24
【问题描述】:
尝试在此处根据文档添加一个简单的真/假值:
http://sphinx-doc.org/ext/ifconfig.html
在我的conf.py 文件中:
extensions = ['sphinx.ext.todo', 'sphinx.ext.ifconfig']
# Custom variables
def setup(app):
app.add_config_value('responsiveenabled', True, True)
在我的grids.rst 文件(描述如何设置引导网格的页面)中,我有这个:
.. ifconfig:: responsiveenabled
Blah blah blah.
我得到的错误是:
NameError: name 'responsiveenabled' is not defined
在responsiveenabled 之后我需要一些东西,比如“in (...)”吗?我想让它与我正在编写的文档版本无关。
【问题讨论】:
标签: python django python-sphinx django-sphinx