Hello, how may I add a stylesheet and change the f...
# dokka
j
Hello, how may I add a stylesheet and change the footer using
dokkaHtmlMultiModule
? I'm not able to add the
pluginConfiguration
part due to not having
DokkaBase
what dependency should I add (if any) and with which scope? Thanks!
m
You can do it by just passing a json in configuration:
Copy code
pluginsMapConfiguration.set(mapOf("org.jetbrains.dokka.base.DokkaBase" to """{ "footerMessage": "<div style=\"color: red\">custom message</div>" }"""))
Keep in mind that plugins configuration is not inherited by children, so you need to also configure child tasks (aka partial tasks)
j
Thank you very much! it worked for me
❤️ 1