我需要在asciidoc的TIP或[NOTE]部分中包含一些代码部分。像这样:
TIP: you can use the following shortcut to find the process id:
[source,shell]
----
jps -lv | grep -i myserver | cut -d ' ' -f 1
----
我发现shell脚本已正确呈现,但无法显示TIP部分。 (它只是写TIP:作为纯文本)。 任何线索?
答案 0 :(得分:1)
使用备用的admonition-block格式和--
块捕获表示法:
[TIP]
--
you can use the following shortcut to find the process id:
[source,shell]
----
jps -lv | grep -i myserver | cut -d ' ' -f 1
----
--
[TIP]
标记只是内联TIP:
样式的替代约定。开始和结束--
标记捕获多个块作为警告块的一部分。这适用于其他类型的块,有时与+
一起使用,与有序或无序列表项一样。