aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/DokkaBase.kt
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2020-02-13 16:05:04 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-02-18 13:28:23 +0100
commite82beddda7b51f285f0422c6a7078a0a80d54d14 (patch)
treee9bebfb0218a6458d04948f88dbec81717cb6b50 /plugins/base/src/main/kotlin/DokkaBase.kt
parent848f2e0656e80604cb54932db5b250303aaccca8 (diff)
downloaddokka-e82beddda7b51f285f0422c6a7078a0a80d54d14.tar.gz
dokka-e82beddda7b51f285f0422c6a7078a0a80d54d14.tar.bz2
dokka-e82beddda7b51f285f0422c6a7078a0a80d54d14.zip
Adds option to mark extension as fallback
Diffstat (limited to 'plugins/base/src/main/kotlin/DokkaBase.kt')
-rw-r--r--plugins/base/src/main/kotlin/DokkaBase.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/base/src/main/kotlin/DokkaBase.kt b/plugins/base/src/main/kotlin/DokkaBase.kt
index 5c579e54..648acfbb 100644
--- a/plugins/base/src/main/kotlin/DokkaBase.kt
+++ b/plugins/base/src/main/kotlin/DokkaBase.kt
@@ -5,7 +5,7 @@ import org.jetbrains.dokka.base.transformers.descriptors.DefaultDescriptorToDocu
import org.jetbrains.dokka.plugability.DokkaPlugin
class DokkaBase: DokkaPlugin() {
- val defaultDescriptorToDocumentationTranslator by extending {
+ val defaultDescriptorToDocumentationTranslator by extending(isFallback = true) {
CoreExtensions.descriptorToDocumentationTranslator providing ::DefaultDescriptorToDocumentationTranslator
}
} \ No newline at end of file