How do I enable Dokka HTML as well my custom forma...
# dokka
c
How do I enable Dokka HTML as well my custom format? If I apply both plugins, I get:
Copy code
An exception occurred applying plugin request [id: 'dev.opensavvy.dokka-mkdocs']
> Failed to apply plugin class 'org.jetbrains.dokka.gradle.DokkaBasePlugin'.
   > Cannot add a configuration with name 'dokkaPlugin' as a configuration with that name already exists.
However, if I only apply my plugin, the HTML format isn't available
Uh, applying my plugin before the official Dokka one seems to work
j
You should use
pluginManager.withPlugin
to avoid ordering issues
DokkaFormatPlugin
does maybe