如何在子列表之后继续列表项

How to continue a list item after a sublist

我想在子列表之后的列表项中添加一些描述性文本。
如何在 Asciidoc 中实现?

这是我想要的结构:

我试过的:

起点:

* A list item of the main list
  ** Then a sublist with some list item
  ** Just another sublist item to give the sublist more sense
  *And after the sublist some more descriptive text.*
* A subsequent item of the main list.

Orgmode 中,以下代码给出了所需的布局:

- A list item of the main list
  - Then a sublist with some list item
  - Just another sublist item to give the sublist more sense
  *And after the sublist some more descriptive text.*
- A subsequent item of the main list.

attaching blocks to an ancestor list

例如:

* A list item of the main list
+
--
** Then a sublist with some list item
** Just another sublist item to give the sublist more sense
--
+
*And after the sublist some more descriptive text.*
* A subsequent item of the main list.