我使用asciidoctor-maven-plugin生成asciidoctor。 输出包含右侧TOC。
当此TOC中的链接变大时,TOC显示水平滚动条。
我可以通过asciidoctor-maven-plugin添加一些简单的CSS来轻松禁用它吗?
答案 0 :(得分:0)
是的,这是asciidoctor.css
中的默认定义:
#toc.toc2 {
width: 20em;
}
在css文件(my-theme.css
)的自己的副本中将其更改为您的要求,并通过以下方式在asciidoctor-maven-plugin中使用它:
<configuration>
<attributes>
<stylesheet>my-theme.css</stylesheet>
</attributes>
</configuration>