blob: 7832a8f90c4c1cb400d56cf7027d1e65955390fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka.dokkatoo") version "2.1.0-SNAPSHOT"
}
dokkatoo {
moduleName.set("customFormat-example")
pluginsConfiguration.html {
// Dokka's stylesheets and assets with conflicting names will be overridden.
// In this particular case, logo-styles.css will be overridden
// and ktor-logo.png will be added as an additional image asset
customStyleSheets.from("logo-styles.css")
customAssets.from("ktor-logo.png")
// Text used in the footer
footerMessage.set("(c) Custom Format Dokka example")
}
}
|