From ff4a92f34d249914ad473af412780a7e908885d8 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Wed, 28 Oct 2015 17:51:20 +0100 Subject: don't generate "Description" subheadings --- src/Formats/StructuredFormatService.kt | 1 - 1 file changed, 1 deletion(-) (limited to 'src/Formats') 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) } -- cgit