From 281477a1f14214d5ef6cf246ee0a72697503ef03 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Thu, 11 May 2017 16:57:19 +0300 Subject: Set jekyll links extension to .html GH-92 fixed --- core/src/main/kotlin/Formats/JekyllFormatService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src') diff --git a/core/src/main/kotlin/Formats/JekyllFormatService.kt b/core/src/main/kotlin/Formats/JekyllFormatService.kt index d217bf38..6b97bbe0 100644 --- a/core/src/main/kotlin/Formats/JekyllFormatService.kt +++ b/core/src/main/kotlin/Formats/JekyllFormatService.kt @@ -34,7 +34,7 @@ open class JekyllFormatService(locationService: LocationService, @Inject constructor(locationService: LocationService, signatureGenerator: LanguageService, - @Named(impliedPlatformsName) impliedPlatforms: List): this(locationService, signatureGenerator, "md", impliedPlatforms) + @Named(impliedPlatformsName) impliedPlatforms: List): this(locationService, signatureGenerator, "html", impliedPlatforms) override fun createOutputBuilder(to: StringBuilder, location: Location): FormattedOutputBuilder = JekyllOutputBuilder(to, location, locationService, languageService, extension, impliedPlatforms) -- cgit