File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -355,3 +355,7 @@ allprojects { subProject ->
355
355
}
356
356
}
357
357
}
358
+
359
+ tasks. named(" dokkaHtmlMultiModule" ) {
360
+ pluginsMapConfiguration. set([" org.jetbrains.dokka.base.DokkaBase" : """ { "templatesDir": "${ projectDir.toString().replace('\\', '/')} /dokka-templates" }""" ])
361
+ }
Original file line number Diff line number Diff line change
1
+ # Customize Dokka's HTML.
2
+ To customize Dokka's HTML output, place a file in this folder.
3
+ Dokka will find a template file there. If the file is not found, a default one will be used.
4
+ This folder is defined by the templatesDir property.
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ tasks.withType(DokkaTaskPartial::class).configureEach {
27
27
28
28
tasks.withType(DokkaTaskPartial ::class ).configureEach {
29
29
suppressInheritedMembers.set(true )
30
+ pluginsMapConfiguration.set(mapOf (" org.jetbrains.dokka.base.DokkaBase" to """ { "templatesDir" : "${rootProject.projectDir.toString().replace(' \\ ' , ' /' )} /dokka-templates" }""" ))
31
+
30
32
dokkaSourceSets.configureEach {
31
33
jdkVersion.set(11 )
32
34
includes.from(" README.md" )
You can’t perform that action at this time.
0 commit comments