英文:
How can I insert an unordered list inside a note in Asciidoc without losing the note?
问题
如何在Asciidoc的注释中添加无序列表?
我尝试了以下语法,但注释消失了,无序列表出现,但没有被包含在注释中。
是否有一种方法可以在注释中插入列表?
我尝试的语法:
[NOTE]
* *ID* 和 *Status* 字段在 *Scope、Profile 和 Users* 中都是 *不可编辑的*,而 *Username 在 Users 中也是不可编辑的*,只能编辑其他值。
* 在进行任何更改之前,*应用按钮最初处于禁用状态*。
* 如果在应用所做的更改之前尝试执行其他操作,则会出现以下弹出窗口。
英文:
How to add an unordered list inside a note in Asciidoc?
I tried the following syntax but the Note disappears and the unordered list appears without being enclosed in a note.
Is there a workaround to insert a list into a note?
The syntax I tried :
[NOTE]
* The *ID* and *Status* fields are *non-editable in Scope, Profile and Users* while the *Username is also non-editable in Users*,one can only edit the other values.
* The *Apply button is initially disabled* prior to making any changes.
* If you try to perform other actions before applying the changes made, the following pop-up appears.
答案1
得分: 1
使用警示块语法,内容通常由四个等号(====)包围。
例如:
[注意]
- Foo
- Bar
- Baz
====
英文:
With admonition block syntax the content is typically delimited by four equal signs (====).
For example:
[NOTE]
====
* Foo
* Bar
* Baz
====
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论