我遇到了问题。如果我想在代码块下的列表中放置一个注释块,它将包含在代码块中。如果我取消注释,则在注释后重新开始列表编号。基本上,我需要的是:
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
块,就像它是代码一样(由于之前的代码块)。有任何想法吗?
答案 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``.