I have `outputDirectory = "$buildDir/dokka"` set i...
# dokka
s
I have
outputDirectory = "$buildDir/dokka"
set in my
dokka {}
block. However, the doc gets generated in a subfolder with a name similarish to my project name. For instance, if my project name is MySDK, it generates the following subfolder: build\dokka\*-my-s-d-k*. Is there a way to customize (or even skip) that subfolder?
m
For me
moduleName = ""
fixed that some time ago, not sure if this trick works now.
s
The
moduleName = ""
trick doesn't seem to work (anymore). 🙁
Although if I use
moduleName = "SomeDir"
, my doc would be under: build\dokka\*SomeDir* instead of build\dokka\*-my-s-d-k*, so that's a start.
It works with
moduleName = "."
. So assuming
outputDirectory = "$buildDir/doc"
, the doc looks like this: build/doc/styles.css build/doc/index.html build/doc/alltypes/ ...