Skip to content

Commit a41f891

Browse files
committed
Update documentation kdoc
1 parent 3df81dd commit a41f891

File tree

943 files changed

+11574
-45662
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

943 files changed

+11574
-45662
lines changed

buildSrc/src/main/kotlin/plugins/dokka.gradle.kts

+13-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,19 @@ apply<DokkaPlugin>()
2323

2424
tasks {
2525
withType<DokkaTask> {
26-
outputFormat = "javadoc"
26+
outputFormat = "html"
2727
outputDirectory = "${rootProject.rootDir}/docs"
28+
29+
configuration {
30+
moduleName = project.parent?.let { parentProject ->
31+
if (parentProject.name == rootProject.name) {
32+
project.name
33+
} else {
34+
"${parentProject.name}/${project.name}"
35+
}
36+
} ?: run {
37+
project.name
38+
}
39+
}
2840
}
2941
}

docs/allclasses-frame.html

-59
This file was deleted.

docs/allclasses-noframe.html

-59
This file was deleted.

0 commit comments

Comments
 (0)