aboutsummaryrefslogtreecommitdiff
path: root/src/Formats
diff options
context:
space:
mode:
authorkisenka <qtuzov@gmail.com>2014-10-10 20:33:59 +0400
committerkisenka <qtuzov@gmail.com>2014-10-10 20:33:59 +0400
commit18bcaee1e51fe3158ce785a34a6115123b7543ef (patch)
tree35f9302368a1b9b4356f18de1e516344636aa6dd /src/Formats
parent8fbeb618bf342dff9e7ba2502bbc07ed50b9806b (diff)
downloaddokka-18bcaee1e51fe3158ce785a34a6115123b7543ef.tar.gz
dokka-18bcaee1e51fe3158ce785a34a6115123b7543ef.tar.bz2
dokka-18bcaee1e51fe3158ce785a34a6115123b7543ef.zip
Added necessary newline after YAML Frontmatter section in Jekyll formatter
Diffstat (limited to 'src/Formats')
-rw-r--r--src/Formats/JekyllFormatService.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt
index dc18a6e4..5179b37d 100644
--- a/src/Formats/JekyllFormatService.kt
+++ b/src/Formats/JekyllFormatService.kt
@@ -11,6 +11,7 @@ public open 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