KV
02/19/2024, 11:55 AMIs this possible to add multiple md files via dokka configurations?
For example in this repo: https://github.com/Kotlin/dokka/blob/1.9.10/examples/gradle/dokka-gradle-example/build.gradle.kts
We have only Module.md
file. So in the gradle, we have added below line:
moduleName.set("Dokka Gradle Example")
includes.from("Module.md")
But what if we have one more Module1.md file to show the different content?
I tried below code it works actually, I can see content of the 2 different md files
includes.from("Module.md", "Module.md")
but is there any way where we can have these 2 file separates?
Can someone have face this kind of issues before to show multiple md files in the project?CLOVIS
02/19/2024, 2:45 PMKV
02/19/2024, 2:46 PMCLOVIS
02/19/2024, 2:47 PMKV
02/19/2024, 2:48 PMCLOVIS
02/19/2024, 2:49 PMKV
02/19/2024, 2:51 PMCLOVIS
02/19/2024, 2:52 PMKV
02/19/2024, 2:53 PMCLOVIS
02/19/2024, 2:56 PMKV
02/19/2024, 2:59 PMKV
02/19/2024, 3:05 PMKV
02/19/2024, 3:06 PMCLOVIS
02/19/2024, 3:29 PMKV
02/19/2024, 3:34 PMCLOVIS
02/19/2024, 3:37 PM# Module MODULE_NAME
## Gradle
## Maven
in a single file
If you want child pages, they can only be created for packages. If you want child pages that correspond to no code at all, you can create an issue: https://github.com/Kotlin/dokka/issuesKV
02/19/2024, 3:40 PMWesley Hartford
02/20/2024, 11:25 PMCLOVIS
02/21/2024, 9:53 AMWesley Hartford
02/21/2024, 3:18 PMOleg Yukhnevich
02/21/2024, 3:31 PMmkdocs.yaml
configuration - https://github.com/whyoleg/cryptography-kotlin/blob/main/mkdocs.yml
You can also search for mkdocs
in a project, for the related logicCLOVIS
02/22/2024, 8:24 AMsolonovamax
03/19/2024, 4:56 AMKV
03/22/2024, 4:10 PM