我只是在学习asciidoc来创建自己的文档。到目前为止,我正在使用以下标记来突出显示源代码:
[source,xml,subs="verbatim,attributes"]
----
<dependency>
<groupId>javax.jms</groupId>
<artifactId>javax.jms-api</artifactId>
<version>2.0.1</version>
</dependency>
----
我仍然没有弄清楚如何突出显示部分代码。有什么帮助吗? 感谢
答案 0 :(得分:1)
我想asciidoctor的方法是使用callouts:
[source,xml,subs="verbatim,attributes"]
----
<dependency>
<groupId>javax.jms</groupId>
<artifactId>javax.jms-api</artifactId>
<version>2.0.1</version> <!--1-->
</dependency>
----
<1> : The version is part of the coordinates
这是这样的: