From 18bcaee1e51fe3158ce785a34a6115123b7543ef Mon Sep 17 00:00:00 2001 From: kisenka Date: Fri, 10 Oct 2014 20:33:59 +0400 Subject: Added necessary newline after YAML Frontmatter section in Jekyll formatter --- src/Formats/JekyllFormatService.kt | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Formats') 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.appendNodes(location, to, nodes) } } \ No newline at end of file -- cgit