diff options
author | Dmitry Jemerov <intelliyole@gmail.com> | 2014-12-29 20:52:37 +0100 |
---|---|---|
committer | Dmitry Jemerov <intelliyole@gmail.com> | 2014-12-29 20:52:37 +0100 |
commit | 7db96f8da4317cd290ccc9f988c534f10923dbbb (patch) | |
tree | d2761c3df6586bf51916dfec296a0a83793f1b2f /src/Formats/JekyllFormatService.kt | |
parent | 41aeba5f437a7d31e4ee34a660e8262ba7d27790 (diff) | |
parent | be20c3f5bc21ab5604b31b2af419b9076a743d74 (diff) | |
download | dokka-7db96f8da4317cd290ccc9f988c534f10923dbbb.tar.gz dokka-7db96f8da4317cd290ccc9f988c534f10923dbbb.tar.bz2 dokka-7db96f8da4317cd290ccc9f988c534f10923dbbb.zip |
Merge pull request #5 from orangy/command-line-format
Command line format
Diffstat (limited to 'src/Formats/JekyllFormatService.kt')
-rw-r--r-- | src/Formats/JekyllFormatService.kt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt index 5179b37d..93861113 100644 --- a/src/Formats/JekyllFormatService.kt +++ b/src/Formats/JekyllFormatService.kt @@ -8,10 +8,13 @@ public open class JekyllFormatService(locationService: LocationService, override fun appendNodes(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) { to.appendln("---") - to.appendln("layout: api") - to.appendln("title: ${nodes.first().name}") + appendFrontMatter(nodes, to) to.appendln("---") to.appendln("") super<MarkdownFormatService>.appendNodes(location, to, nodes) } + + protected open fun appendFrontMatter(nodes: Iterable<DocumentationNode>, to: StringBuilder) { + to.appendln("title: ${nodes.first().name}") + } }
\ No newline at end of file |