diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-11-17 12:38:47 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-11-17 12:38:47 +0100 |
commit | e7aeb481697a2b295b8c1f49102642caec11a34a (patch) | |
tree | 5414ea79774924c5214dd486df01072d8b154335 /src/Formats/JekyllFormatService.kt | |
parent | 58d322242a6b43770cf697d9726448a46235504f (diff) | |
download | dokka-e7aeb481697a2b295b8c1f49102642caec11a34a.tar.gz dokka-e7aeb481697a2b295b8c1f49102642caec11a34a.tar.bz2 dokka-e7aeb481697a2b295b8c1f49102642caec11a34a.zip |
fix link extensions in kotlin-website format
Diffstat (limited to 'src/Formats/JekyllFormatService.kt')
-rw-r--r-- | src/Formats/JekyllFormatService.kt | 8 |
1 files changed, 5 insertions, 3 deletions
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<DocumentationNode>) { to.appendln("---") |