在 TIP 或 NOTE 中使用代码脚本
Using code script into a TIP or NOTE
我需要在我的 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: 写为纯文本)。
有什么线索吗?
使用备用警告块格式和 --
块捕获符号:
[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:
样式的替代约定。打开和关闭 --
标记捕获多个块作为警告块的一部分。这适用于其他类型的块,有时与 +
结合使用,就像有序或无序列表项一样。
我需要在我的 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: 写为纯文本)。 有什么线索吗?
使用备用警告块格式和 --
块捕获符号:
[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:
样式的替代约定。打开和关闭 --
标记捕获多个块作为警告块的一部分。这适用于其他类型的块,有时与 +
结合使用,就像有序或无序列表项一样。