aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-05-11 16:57:19 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-05-11 16:57:19 +0300
commit281477a1f14214d5ef6cf246ee0a72697503ef03 (patch)
treed20bf2caaa900ce596a97c1051562b990913c1e7 /core/src
parent3b6e3a8bf69b7470cd7e9a867ff3b2e7e645fbd4 (diff)
downloaddokka-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.kt2
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)