2017-02-19 61 views
1

我遇到問題了。如果我想將一個音符塊放在代碼塊下的列表中,它將被包含在代碼塊中。如果我重新登錄,登記號碼會在記錄後重新開始。所以基本上,我需要的是:獅身人面像注意塊在代碼塊下的列表中?

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

我不能在這個問題重現確切的問題。註釋的編號和顯示正常,但代碼塊未正確格式化。如果該行縮進,一切都適用於我。 – mzjn

回答

2

那麼什麼工作如下:

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``.