diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-07-09 16:30:36 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-13 14:23:08 +0200 |
commit | 2c967fb5389b0f7891b59d8a9334e4efca546b46 (patch) | |
tree | 2db3180c5f17f4210f25bf94fe824427bec1d3ec /plugins/jekyll/src/main | |
parent | 8525326620eab855c2a0af83acfd47efb431d253 (diff) | |
download | dokka-2c967fb5389b0f7891b59d8a9334e4efca546b46.tar.gz dokka-2c967fb5389b0f7891b59d8a9334e4efca546b46.tar.bz2 dokka-2c967fb5389b0f7891b59d8a9334e4efca546b46.zip |
Remove `format` from dokka DokkaConfiguration
Diffstat (limited to 'plugins/jekyll/src/main')
-rw-r--r-- | plugins/jekyll/src/main/kotlin/JekyllPlugin.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/jekyll/src/main/kotlin/JekyllPlugin.kt b/plugins/jekyll/src/main/kotlin/JekyllPlugin.kt index ad83ca76..f6ea894c 100644 --- a/plugins/jekyll/src/main/kotlin/JekyllPlugin.kt +++ b/plugins/jekyll/src/main/kotlin/JekyllPlugin.kt @@ -21,7 +21,6 @@ class JekyllPlugin : DokkaPlugin() { val renderer by extending { (CoreExtensions.renderer providing { JekyllRenderer(it) } - applyIf { format == "jekyll" } override plugin<DokkaBase>().htmlRenderer) } @@ -54,4 +53,4 @@ class JekyllRenderer( content(builder, page) return builder.toString() } -}
\ No newline at end of file +} |