2010-11-29 58 views

回答

2

看着我自己的文檔我發現了一個類似的方案,但我不能保證,它將與文檔作爲第一文本列表中的工作:

#. **Defining the Model Class** 

    All models must inherit from |LrbBaseModel| either directly or 
    indirectly and have the |LrbModelInit| decorator above their 
    constructor (a.k.a. ``__init__``):: 

     class foo(LrbBaseModel): 
      @LrbModelInit() 
      def __init__(self): 
       ... 

這將產生:

alt text

我認爲你可以擺脫一個代碼塊沒有前同步文本類似如下:

#. :: 
     def fooDeFaFa(): 
      pass 

請注意,我的代碼塊縮進了兩次。 ::表示空的文本段落塊,然後我的代碼再次通過縮進來定位此::語法的子元素。

或者,這可以工作:

#. 
    :: 
     def fooDeFaFa(): 
      pass 
+1

`#。 ::`會完美運作;在列表項中它只是一個完美的普通段落,所以`::`將按預期工作。爲簡單起見,請在http://www.tele3.cz/jbar/rest/rest.html嘗試。但請注意,他確實說無序 - 因爲這個原因``::`或` - ::`會更準確。 – 2010-11-30 01:32:11