如何在自定义 python-sphinx 指令/扩展中使用现有指令?

问题描述 投票:0回答:2

我想创建一个自定义

Directive
,在其实现中使用现有指令(本例中为
code-block
)。

reStructuredText 中的手动等效项是:

.. mydirective:: py

   .. code-block: py
        
      print("Hello world")     

但是,我希望在

code-block
的定义内创建
my-directive
。我找到了一个示例,为现有指令(如下)硬编码了适当的
reStructuredText
,但这取决于使用
rST
的解析器。

class MyDirective(Directive):
    has_content = True

    def run(self):
        # Do custom stuff...

        # Use code-block Directive
        new_content = [
            '.. tab:: {}'.format(json.dumps(tab_args)),
            '   {}'.format(tab_name),
            '',
            '   .. code-block:: {}'.format(lang),
        ]

        if 'linenos' in self.options:
            new_content.append('      :linenos:')

        new_content.append('')

        for idx, line in enumerate(new_content):
            self.content.data.insert(idx, line)
            self.content.items.insert(idx, (None, idx))

        node = nodes.container()
        self.state.nested_parse(self.content, self.content_offset, node)
        return node.children

我如何以独立于解析器的方式实现它?

python python-sphinx docutils
2个回答
3
投票

最后我的解决方案是:

from sphinx.directives.code import CodeBlock


class CodeTabDirective(CodeBlock):
    """ Tab directive with a codeblock as its content"""

    def run(self):
        self.assert_has_content()
        
        code_block = super().run()[0]

        # Set anything required by OtherDirective

        node = OtherDirective.run(self)[0]  # Generates container
        node.append(code_block)  # Put code block inside container

        return [node]

其中

OtherDirective
是另一个现有指令。

我无法子类化这两个指令并通过

super
使用它们的功能,因为我需要从这两个指令调用名为
run
的方法。

更新

您可以在sphinx-tabs

CodeTabDirective
中看到最终的解决方案。


0
投票

这是我如何从我自己的自定义中调用狮身人面像设计

GridDirective
GridDirective

	
© www.soinside.com 2019 - 2024. All rights reserved.