Howdy y'all, I've set up dokka in my multi module ...
# dokka
g
Howdy y'all, I've set up dokka in my multi module project and it's all working fine and dandy, however I've been trying to update some of the configuration (logo, css, footer message) and that works in the 'All modules' index.html. I have
dokkaHtmlMultiModule.configure
in my root
build.gradle.kts
file but in all modules, nothing changes. I've tried adding the
dokkaHtml.configure
to those modules as well with the same configuration and nothing seems to change. Am I missing something here?
I was able to figure it out. For anyone else coming to this channel searching for answers for the same thing, I was able to find a hint in the dokka-multimodule-example where one of the child projects had
Copy code
// notice the use of Partial task
in their gradle file which caused me to try using
dokkaHtmlPartial.configure
instead which worked. I had no idea that's what the partial tasks were for before, but it makes sense now. hope someone finds this useful in the future.