aboutsummaryrefslogtreecommitdiff
path: root/src/Formats/KotlinWebsiteFormatService.kt
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-11-17 12:38:47 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-11-17 12:38:47 +0100
commite7aeb481697a2b295b8c1f49102642caec11a34a (patch)
tree5414ea79774924c5214dd486df01072d8b154335 /src/Formats/KotlinWebsiteFormatService.kt
parent58d322242a6b43770cf697d9726448a46235504f (diff)
downloaddokka-e7aeb481697a2b295b8c1f49102642caec11a34a.tar.gz
dokka-e7aeb481697a2b295b8c1f49102642caec11a34a.tar.bz2
dokka-e7aeb481697a2b295b8c1f49102642caec11a34a.zip
fix link extensions in kotlin-website format
Diffstat (limited to 'src/Formats/KotlinWebsiteFormatService.kt')
-rw-r--r--src/Formats/KotlinWebsiteFormatService.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Formats/KotlinWebsiteFormatService.kt b/src/Formats/KotlinWebsiteFormatService.kt
index 25491cb3..4eda7910 100644
--- a/src/Formats/KotlinWebsiteFormatService.kt
+++ b/src/Formats/KotlinWebsiteFormatService.kt
@@ -4,7 +4,7 @@ import com.google.inject.Inject
public class KotlinWebsiteFormatService @Inject constructor(locationService: LocationService,
signatureGenerator: LanguageService)
-: JekyllFormatService(locationService, signatureGenerator) {
+: JekyllFormatService(locationService, signatureGenerator, "html") {
private var needHardLineBreaks = false
override fun appendFrontMatter(nodes: Iterable<DocumentationNode>, to: StringBuilder) {