gpt4 book ai didi

python - Sphinx add_config_value 不添加变量

转载 作者:行者123 更新时间:2023-11-28 16:45:44 25 4
gpt4 key购买 nike

尝试根据此处的文档添加一个简单的 true/false 值:

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 (...)”?我想让它与我正在编写的文档版本无关。

最佳答案

你的 conf.py 文件应该是:

extensions = ['sphinx.ext.todo', 'sphinx.ext.ifconfig']

# Custom variables
def setup(app):
app.add_config_value('responsiveenabled', True, True)

responsiveenabled = True

我知道它应该是默认值,但我无法让它工作没有初始化。

然后你就可以使用了

.. ifconfig:: responsiveenabled

text included if the config variable is set

text always included

关于python - Sphinx add_config_value 不添加变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14060582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com