diff options
-rw-r--r-- | src/Formats/JekyllFormatService.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt index 19878154..64eee2a9 100644 --- a/src/Formats/JekyllFormatService.kt +++ b/src/Formats/JekyllFormatService.kt @@ -2,7 +2,7 @@ package org.jetbrains.dokka public class JekyllFormatService(locationService: LocationService, signatureGenerator: SignatureGenerator) : MarkdownFormatService(locationService, signatureGenerator) { - + override val extension: String = "html" override fun format(nodes: Iterable<DocumentationNode>, to: StringBuilder) { to.appendln("---") to.appendln("layout: post") |