diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-26 12:46:04 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-26 12:46:04 +0100 |
commit | 9849287541fc23ef130729bd5e1e908a47b97ac3 (patch) | |
tree | 4ce54f3a60b6e3d8e64d288c3bd3564f0ed75c44 /src/Formats | |
parent | 8ae8cb7f37dba7d2f6969a92768e135538b52252 (diff) | |
download | dokka-9849287541fc23ef130729bd5e1e908a47b97ac3.tar.gz dokka-9849287541fc23ef130729bd5e1e908a47b97ac3.tar.bz2 dokka-9849287541fc23ef130729bd5e1e908a47b97ac3.zip |
use correct extension in links for jekyll and kotlin-website docs
Diffstat (limited to 'src/Formats')
-rw-r--r-- | src/Formats/JekyllFormatService.kt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Formats/JekyllFormatService.kt b/src/Formats/JekyllFormatService.kt index 93ba4704..e4c3ccd5 100644 --- a/src/Formats/JekyllFormatService.kt +++ b/src/Formats/JekyllFormatService.kt @@ -4,8 +4,6 @@ public open class JekyllFormatService(locationService: LocationService, signatureGenerator: LanguageService) : MarkdownFormatService(locationService, signatureGenerator) { - override fun link(from: DocumentationNode, to: DocumentationNode): FormatLink = link(from, to, "html") - override fun appendNodes(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) { to.appendln("---") appendFrontMatter(nodes, to) |