blob: 198781545094fa4027f663631c6225e5f06a9a22 [file] [log] [blame]
Ilya Ryzhenkoveeb42e92014-07-14 22:29:34 +04001package org.jetbrains.dokka
2
3public class JekyllFormatService(locationService: LocationService, signatureGenerator: SignatureGenerator)
4: MarkdownFormatService(locationService, signatureGenerator) {
5
6 override fun format(nodes: Iterable<DocumentationNode>, to: StringBuilder) {
7 to.appendln("---")
8 to.appendln("layout: post")
9 to.appendln("title: ${nodes.first().name}")
10 to.appendln("---")
11 super<MarkdownFormatService>.format(nodes, to)
12 }
13}