File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -347,6 +347,8 @@ val downloadWindowsZonesMapping by tasks.registering {
347
347
}
348
348
349
349
tasks.withType<AbstractDokkaLeafTask >().configureEach {
350
+ pluginsMapConfiguration.set(mapOf (" org.jetbrains.dokka.base.DokkaBase" to """ { "templatesDir" : "${projectDir.toString().replace(' \\ ' , ' /' )} /dokka-templates" }""" ))
351
+
350
352
dokkaSourceSets.configureEach {
351
353
// reportUndocumented.set(true) // much noisy output about `hashCode` and serializer encoders, decoders etc
352
354
skipDeprecated.set(true )
Original file line number Diff line number Diff line change
1
+ # Dokka's template customization
2
+ To provide unified navigation for all parts of [ kotlinlang.org] ( https://kotlinlang.org/ ) ,
3
+ the Kotlin Website Team uses this directory to place custom templates in this folder
4
+ during the website build time on TeamCity.
5
+
6
+ It is not practical to place these templates in the kotlinx-datetime repository because they change from time to time
7
+ and aren't related to the library's release cycle.
8
+
9
+ The folder is defined as a source for custom templates by the templatesDir property through Dokka's plugin configuration.
10
+
11
+ [ Here] ( https://kotlin.github.io/dokka/1.7.20-SNAPSHOT/user_guide/output-formats/html/#custom-html-pages ) , you can
12
+ find more about the customization of Dokka's HTML output.
You can’t perform that action at this time.
0 commit comments