aboutsummaryrefslogtreecommitdiff
path: root/src/Formats/JekyllFormatService.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/Formats/JekyllFormatService.kt')
-rw-r--r--src/Formats/JekyllFormatService.kt7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt
index 459b5113..9870c8ee 100644
--- a/src/Formats/JekyllFormatService.kt
+++ b/src/Formats/JekyllFormatService.kt
@@ -1,17 +1,16 @@
package org.jetbrains.dokka
public class JekyllFormatService(locationService: LocationService,
- resolutionService: ResolutionService,
signatureGenerator: LanguageService)
-: MarkdownFormatService(locationService, resolutionService, signatureGenerator) {
+: MarkdownFormatService(locationService, signatureGenerator) {
override fun link(from: DocumentationNode, to: DocumentationNode): FormatLink = link(from, to, "html")
- override fun appendNodes(to: StringBuilder, nodes: Iterable<DocumentationNode>) {
+ override fun appendNodes(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) {
to.appendln("---")
to.appendln("layout: api")
to.appendln("title: ${nodes.first().name}")
to.appendln("---")
- super<MarkdownFormatService>.appendNodes(to, nodes)
+ super<MarkdownFormatService>.appendNodes(location, to, nodes)
}
} \ No newline at end of file