aboutsummaryrefslogtreecommitdiff
path: root/src/Formats
diff options
context:
space:
mode:
authorIlya Ryzhenkov <orangy@jetbrains.com>2014-09-25 22:20:58 +0400
committerIlya Ryzhenkov <orangy@jetbrains.com>2014-09-25 22:20:58 +0400
commitf7bab78839cea5674658a6a0298f88ef5ccca019 (patch)
tree51d17c02f8f935b26a9c9d85905fc33c18ebd6a1 /src/Formats
parenta070217e942a16ed7b5ee63e98a4183788c8e660 (diff)
downloaddokka-f7bab78839cea5674658a6a0298f88ef5ccca019.tar.gz
dokka-f7bab78839cea5674658a6a0298f88ef5ccca019.tar.bz2
dokka-f7bab78839cea5674658a6a0298f88ef5ccca019.zip
Markdown, sections, styles and lots more.
Diffstat (limited to 'src/Formats')
-rw-r--r--src/Formats/StructuredFormatService.kt6
-rw-r--r--src/Formats/TextFormatService.kt4
2 files changed, 6 insertions, 4 deletions
diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt
index 339ccf73..0c58f553 100644
--- a/src/Formats/StructuredFormatService.kt
+++ b/src/Formats/StructuredFormatService.kt
@@ -63,8 +63,10 @@ public abstract class StructuredFormatService(val locationService: LocationServi
}
appendLine(to, formatText(node.doc.description))
appendLine(to)
- for (section in node.doc.sections) {
- appendLine(to, formatBold(formatText(section.label)))
+ for ((label, section) in node.doc.sections) {
+ if (label.startsWith("$"))
+ continue
+ appendLine(to, formatBold(formatText(label)))
appendLine(to, formatText(section.text))
appendLine(to)
}
diff --git a/src/Formats/TextFormatService.kt b/src/Formats/TextFormatService.kt
index 29f01a74..77a0bb65 100644
--- a/src/Formats/TextFormatService.kt
+++ b/src/Formats/TextFormatService.kt
@@ -12,8 +12,8 @@ public class TextFormatService(val signatureGenerator: LanguageService) : Format
for (n in 0..node.doc.summary.length())
append("=")
- for (section in node.doc.sections) {
- appendln(section.label)
+ for ((label,section) in node.doc.sections) {
+ appendln(label)
appendln(section.text)
}
}