CLOVIS
08/14/2024, 8:06 PMindex.html
, I'd like to generate <module_id>/index.html
. I'm overriding DokkaLocationProvider
for the ModulePageNode
. However, I don't see how to get the module name from that.
• ModulePageNode.name
seems to be the module name. But that seems like a convenient coincidence more than expected behavior, no? If the user overrode the module name, I would expect the overriden name, not the module path?
• I see there is dokkaContext.configuration.moduleName
; is that the module path (Gradle project name) or the module name (as overriden by the user)?Oleg Yukhnevich
08/16/2024, 8:44 AMDokkaContext::configuration.moduleName
.
it's value is project.name
by default and could be overriden by the userCLOVIS
08/17/2024, 9:10 AMOleg Yukhnevich
08/19/2024, 6:50 AM