diff options
Diffstat (limited to 'plugins/base/src/main/kotlin/DokkaBase.kt')
-rw-r--r-- | plugins/base/src/main/kotlin/DokkaBase.kt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/base/src/main/kotlin/DokkaBase.kt b/plugins/base/src/main/kotlin/DokkaBase.kt index 938c7701..4da2cb6e 100644 --- a/plugins/base/src/main/kotlin/DokkaBase.kt +++ b/plugins/base/src/main/kotlin/DokkaBase.kt @@ -193,15 +193,15 @@ class DokkaBase : DokkaPlugin() { } val scriptsInstaller by extending { - htmlPreprocessors with ScriptsInstaller order { after(rootCreator) } + htmlPreprocessors providing ::ScriptsInstaller order { after(rootCreator) } } val stylesInstaller by extending { - htmlPreprocessors with StylesInstaller order { after(rootCreator) } + htmlPreprocessors providing ::StylesInstaller order { after(rootCreator) } } val assetsInstaller by extending { - htmlPreprocessors with AssetsInstaller order { after(rootCreator) } + htmlPreprocessors with AssetsInstaller order { after(rootCreator) } applyIf { !delayTemplateSubstitution } } val customResourceInstaller by extending { @@ -209,7 +209,7 @@ class DokkaBase : DokkaPlugin() { after(stylesInstaller) after(scriptsInstaller) after(assetsInstaller) - } + } applyIf { !delayTemplateSubstitution } } val packageListCreator by extending { @@ -219,7 +219,7 @@ class DokkaBase : DokkaPlugin() { } val sourcesetDependencyAppender by extending { - htmlPreprocessors providing ::SourcesetDependencyAppender order { after(rootCreator) } + htmlPreprocessors providing ::SourcesetDependencyAppender order { after(rootCreator) } applyIf { !delayTemplateSubstitution } } val resolveLinkConsumer by extending { |