From e7aeb481697a2b295b8c1f49102642caec11a34a Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 17 Nov 2015 12:38:47 +0100 Subject: fix link extensions in kotlin-website format --- src/Formats/JekyllFormatService.kt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/Formats/JekyllFormatService.kt') diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt index 75684ac2..f81257d6 100644 --- a/src/Formats/JekyllFormatService.kt +++ b/src/Formats/JekyllFormatService.kt @@ -2,9 +2,11 @@ package org.jetbrains.dokka import com.google.inject.Inject -public open class JekyllFormatService @Inject constructor(locationService: LocationService, - signatureGenerator: LanguageService) -: MarkdownFormatService(locationService, signatureGenerator) { +open class JekyllFormatService + @Inject constructor(locationService: LocationService, + signatureGenerator: LanguageService, + linkExtension: String = "md") +: MarkdownFormatService(locationService, signatureGenerator, linkExtension) { override fun appendNodes(location: Location, to: StringBuilder, nodes: Iterable) { to.appendln("---") -- cgit