ここのドキュメントごとに単純な真/偽の値を追加しようとしています:
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 (...)"のように の後に何か必要ですか? 私が書いているドキュメントのバージョンにとらわれないようにしたいと思います。