如何更改在 Grails 中使用 'grails doc' 生成的文件的 CSS

How can I change the CSS of the files that get generated with 'grails doc' in Grails

当我使用 grails doc 时,我在 markdown 语言中使用的表格没有填充,我想添加一些以提高可读性。我怎样才能做到这一点?

您可以通过 configuration 添加自定义 css。

grails.doc.css - The location of a directory containing custom CSS files (type java.io.File)

示例:

grails.doc.css = new File("src/docs/css")