我尝试在Sphinx文档中使用替换定义和代码块,但它不起作用。这是我的ReST源代码:
.. |foo| code-block:: python
foo = 1
|foo|
Sphinx引发以下错误:
/.../examples.rst:184: WARNING: Substitution definition "foo" empty or invalid.
.. |foo| code-block:: python
foo = 1
/.../examples.rst:193: ERROR: Undefined substitution referenced: "foo".
如何让这个例子有效?
答案 0 :(得分:2)
不更改code-block
,这是不可能的。
我创建了一个Sphinx扩展程序,为此提供了substitution-code-block
。
它允许您在substitutions
中定义conf.py
,然后在.. substitution-code-block
块中使用这些替换。
此扩展名位于https://github.com/adamtheturtle/sphinx-substitution-extensions。
但是,这是非常少量的代码。 要在没有第三方扩展的自己的代码库中启用此功能,请在代码库中创建一个包含以下内容的模块:
"""
Custom Sphinx extensions.
"""
from typing import List
from sphinx.application import Sphinx
from sphinx.directives.code import CodeBlock
class SubstitutionCodeBlock(CodeBlock): # type: ignore
"""
Similar to CodeBlock but replaces placeholders with variables.
"""
def run(self) -> List:
"""
Replace placeholders with given variables.
"""
app = self.state.document.settings.env.app
new_content = []
self.content = self.content # type: List[str]
existing_content = self.content
for item in existing_content:
for pair in app.config.substitutions:
original, replacement = pair
item = item.replace(original, replacement)
new_content.append(item)
self.content = new_content
return list(CodeBlock.run(self))
def setup(app: Sphinx) -> None:
"""
Add the custom directives to Sphinx.
"""
app.add_config_value('substitutions', [], 'html')
app.add_directive('substitution-code-block', SubstitutionCodeBlock)
然后,使用此模块extensions
中定义的conf.py
。
然后,在substitutions
中设置conf.py
变量,例如到[('|foo|', 'bar')]
中,以在每个|foo|
中将bar
替换为substitution-code-block
。