0

我正在使用 asciidoctor-maven-plugin 生成 asciidoctor。输出包含右侧 TOC。

当此 TOC 中的链接变大时,TOC 会显示一个水平滚动条。

我可以通过 asciidoctor-maven-plugin 添加一些简单的 css 来轻松禁用它吗?

4

1 回答 1

0

是的,这是默认定义asciidoctor.css

#toc.toc2 {
  width: 20em;
}

在自己的 css 文件 () 副本中将其更改为您的要求,my-theme.css并通过以下方式在 asciidoctor-maven-plugin 中使用它:

<configuration>
  <attributes>
    <stylesheet>my-theme.css</stylesheet>
  </attributes>
</configuration>
于 2015-02-18T08:26:39.347 回答