Robert Jaros
11/13/2023, 10:38 PMIgnat Beresnev
11/14/2023, 10:41 AMsuppres.set(true)
) and play around with the configuration in general.
Alternatively, you can just dump Dokka's configuration as a whole
import org.jetbrains.dokka.InternalDokkaApi
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.dokka.gradle.internal.buildJsonConfiguration
tasks.named("dokkaHtml", DokkaTask::class) {
@OptIn(InternalDokkaApi::class)
println("Dokka's HTML configuration: ${this.buildJsonConfiguration(false)}")
}
And then use the CLI runner with the dumped JSON as input - it might even build docs correctly for all platforms.
If your project is multi-module, then things become more complicated, but it should also be doable 🙂