如何在子列表之后继续列表项
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.
我想在子列表之后的列表项中添加一些描述性文本。
如何在 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.