如何在 org-mode 中的列表项中引用?

How to have a quotation inside a list item in org-mode?

所以,我想要这样的东西:

1. This is a list item.
   This is the second line of the list item.
2. This is another list item.
   This is another line of this item.
#+begin_quote
This is a quotation that should belong to the 2nd list item.
#+end_quote
   This is the last line of the 2nd list item.
3. This is the third list item.

但是org-mode理解是引号块打断了列表。所以我的结果有一个列表,一个引用(不属于列表项),然后是另一个列表(只有一个项目)。

是否可以在org-mode做我想做的事?

提前致谢。

认为您只需要注意缩进和 returns。 这个:

* Trying to test something
  Here is some text.

  New Paragraph.
** Sub heading for this section
   And some text here.

1. This is a list item.                                                                           
   This is the second line of the list item.                                                      
2. This is another list item.                                                                     
   This is another line of this item.                                                             

   #+begin_quote                                                                                     
   This is a quotation that should belong to the 2nd list item.                                      
   #+end_quote                                                                                       

   This is the last line of the 2nd list item.                                                    
3. This is the third list item.    

导出为 ascii 时给我留下这样的列表

  1. 这是一个列表项。这是列表项的第二行。
  2. 这是另一个列表项。这是该项目的另一行。

     This is a quotation that should belong to the 2nd list
     item.
    

    这是第二个列表项的最后一行。

  3. 这是第三个列表项。