Sylvain Patenaude
01/29/2020, 6:16 PMoutputDirectory = "$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?msink
01/30/2020, 2:28 PMmoduleName = ""
fixed that some time ago, not sure if this trick works now.msink
01/30/2020, 2:37 PMSylvain Patenaude
01/30/2020, 3:34 PMmoduleName = ""
trick doesn't seem to work (anymore). 🙁Sylvain Patenaude
01/30/2020, 3:42 PMmoduleName = "SomeDir"
, my doc would be under:
build\dokka\*SomeDir* instead of build\dokka\*-my-s-d-k*, so that's a start.Sylvain Patenaude
01/30/2020, 4:02 PMmoduleName = "."
. So assuming outputDirectory = "$buildDir/doc"
, the doc looks like this:
build/doc/styles.css
build/doc/index.html
build/doc/alltypes/
...