From 2dff9771080735ac08e369f0f9bbad53ff9ed7d2 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 14 Jul 2014 22:42:10 +0400 Subject: Revert to md for now. --- src/Formats/JekyllFormatService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt index 64eee2a9..1b855b01 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 val extension: String = "md" override fun format(nodes: Iterable, to: StringBuilder) { to.appendln("---") to.appendln("layout: post") -- cgit