aboutsummaryrefslogtreecommitdiff
path: root/src/Formats/JekyllFormatService.kt
diff options
context:
space:
mode:
authorIlya Ryzhenkov <orangy@jetbrains.com>2014-10-12 20:32:09 +0400
committerIlya Ryzhenkov <orangy@jetbrains.com>2014-10-12 20:32:09 +0400
commitcf272252a8e62d7b212e9025065a8bce4f514946 (patch)
tree4a9fbc3ad534df405e17e0d58a0b8a40d2ac4083 /src/Formats/JekyllFormatService.kt
parent10068c5b31a2e3df746638da8c440d325a32f67d (diff)
parentf5d6bc3129e2cd5ba9511415b3e700b22f28c2da (diff)
downloaddokka-cf272252a8e62d7b212e9025065a8bce4f514946.tar.gz
dokka-cf272252a8e62d7b212e9025065a8bce4f514946.tar.bz2
dokka-cf272252a8e62d7b212e9025065a8bce4f514946.zip
Merge pull request #1 from kisenka/kotlin-website-formatter
Kotlin website formatter and other formatters improvements
Diffstat (limited to 'src/Formats/JekyllFormatService.kt')
-rw-r--r--src/Formats/JekyllFormatService.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt
index 9870c8ee..5179b37d 100644
--- a/src/Formats/JekyllFormatService.kt
+++ b/src/Formats/JekyllFormatService.kt
@@ -1,6 +1,6 @@
package org.jetbrains.dokka
-public class JekyllFormatService(locationService: LocationService,
+public open class JekyllFormatService(locationService: LocationService,
signatureGenerator: LanguageService)
: MarkdownFormatService(locationService, signatureGenerator) {
@@ -11,6 +11,7 @@ public class JekyllFormatService(locationService: LocationService,
to.appendln("layout: api")
to.appendln("title: ${nodes.first().name}")
to.appendln("---")
+ to.appendln("")
super<MarkdownFormatService>.appendNodes(location, to, nodes)
}
} \ No newline at end of file