diff options
Diffstat (limited to 'src/Formats/TextFormatService.kt')
-rw-r--r-- | src/Formats/TextFormatService.kt | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/Formats/TextFormatService.kt b/src/Formats/TextFormatService.kt deleted file mode 100644 index 9db20dfa..00000000 --- a/src/Formats/TextFormatService.kt +++ /dev/null @@ -1,18 +0,0 @@ -package org.jetbrains.dokka - -public class TextFormatService(val signatureGenerator: LanguageService) : FormatService { - override val extension: String = "txt" - override fun appendNodes(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) { - for (node in nodes) { - with (to) { - appendln(signatureGenerator.render(node)) - appendln() - appendln(node.content.summary) - - for ((label, section) in node.content.sections) { - appendln(label) - } - } - } - } -}
\ No newline at end of file |