diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-14 22:32:59 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-14 22:32:59 +0400 |
commit | 64f79483566fcd127a1bb649263d9222b03d98de (patch) | |
tree | 38676f84712e4ade4b9f3973f7faf8884795bdf0 /src/Formats/JekyllFormatService.kt | |
parent | eeb42e92f5eaf1c05f8102fec57d348feaca2e5c (diff) | |
download | dokka-64f79483566fcd127a1bb649263d9222b03d98de.tar.gz dokka-64f79483566fcd127a1bb649263d9222b03d98de.tar.bz2 dokka-64f79483566fcd127a1bb649263d9222b03d98de.zip |
Use html extension for jekyll so that links work
Diffstat (limited to 'src/Formats/JekyllFormatService.kt')
-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") |