aboutsummaryrefslogtreecommitdiff
path: root/src/Formats
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-10-28 17:51:20 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-10-29 11:57:25 +0100
commitff4a92f34d249914ad473af412780a7e908885d8 (patch)
tree35f342ff6a45f49ffde20f34d46cdba02dc28db2 /src/Formats
parent0eae82a20d11bce32a395d3e26fbcc7b92ce21bb (diff)
downloaddokka-ff4a92f34d249914ad473af412780a7e908885d8.tar.gz
dokka-ff4a92f34d249914ad473af412780a7e908885d8.tar.bz2
dokka-ff4a92f34d249914ad473af412780a7e908885d8.zip
don't generate "Description" subheadings
Diffstat (limited to 'src/Formats')
-rw-r--r--src/Formats/StructuredFormatService.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt
index f83f4aa4..2357c0d6 100644
--- a/src/Formats/StructuredFormatService.kt
+++ b/src/Formats/StructuredFormatService.kt
@@ -144,7 +144,6 @@ public abstract class StructuredFormatService(locationService: LocationService,
fun appendDescription(location: Location, to: StringBuilder, node: DocumentationNode) {
if (node.content.description != ContentEmpty) {
- appendHeader(to, "Description", 3)
appendLine(to, formatText(location, node.content.description))
appendLine(to)
}