Sphinx Note Block在代码块下的列表中?

时间:2017-02-19 20:27:48

标签: python django python-sphinx

我遇到了问题。如果我想在代码块下的列表中放置一个注释块,它将包含在代码块中。如果我取消注释,则在注释后重新开始列表编号。基本上,我需要的是:

Fixed list example
------------------

#. First do spam
#. Then do ``eggs``::

   some_code_stuff()

   .. note::

      Nobody expects the Spanish Inquisistion

#. Then do spam and ``eggs``.

列表应在注释块后继续3。但是目前,只显示..note块,就像它是代码一样(由于之前的代码块)。有任何想法吗?

有点与:Sphinx: Resume list numbering after a note section

有关

1 个答案:

答案 0 :(得分:4)

那么有效的是:

Fixed list example
------------------

#. First do spam
#. Then do ``eggs``:

   .. code-block:: python

      some_code_stuff()

   .. note::

      Nobody expects the Spanish Inquisistion

#. Then do spam and ``eggs``.