diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-05-11 16:57:19 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-05-11 16:57:19 +0300 |
commit | 281477a1f14214d5ef6cf246ee0a72697503ef03 (patch) | |
tree | d20bf2caaa900ce596a97c1051562b990913c1e7 /core/src | |
parent | 3b6e3a8bf69b7470cd7e9a867ff3b2e7e645fbd4 (diff) | |
download | dokka-281477a1f14214d5ef6cf246ee0a72697503ef03.tar.gz dokka-281477a1f14214d5ef6cf246ee0a72697503ef03.tar.bz2 dokka-281477a1f14214d5ef6cf246ee0a72697503ef03.zip |
Set jekyll links extension to .html
GH-92 fixed
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/kotlin/Formats/JekyllFormatService.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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<String>): this(locationService, signatureGenerator, "md", impliedPlatforms) + @Named(impliedPlatformsName) impliedPlatforms: List<String>): this(locationService, signatureGenerator, "html", impliedPlatforms) override fun createOutputBuilder(to: StringBuilder, location: Location): FormattedOutputBuilder = JekyllOutputBuilder(to, location, locationService, languageService, extension, impliedPlatforms) |