From 64f79483566fcd127a1bb649263d9222b03d98de Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 14 Jul 2014 22:32:59 +0400 Subject: Use html extension for jekyll so that links work --- src/Formats/JekyllFormatService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Formats') 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, to: StringBuilder) { to.appendln("---") to.appendln("layout: post") -- cgit