From bfe53b9ea3359baee1785c2f6291bb5408597e28 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 20 Feb 2015 17:01:26 +0100 Subject: resolve content links to declaration descriptors immediately during markdown to content tree conversion; remove separate phase for resolving links in content --- src/Formats/HtmlFormatService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Formats') diff --git a/src/Formats/HtmlFormatService.kt b/src/Formats/HtmlFormatService.kt index d5331422..751c5d5b 100644 --- a/src/Formats/HtmlFormatService.kt +++ b/src/Formats/HtmlFormatService.kt @@ -134,7 +134,7 @@ public open class HtmlFormatService(locationService: LocationService, } override fun appendOutlineHeader(location: Location, node: DocumentationNode, to: StringBuilder) { - val link = ContentNodeLink(node) + val link = ContentNodeDirectLink(node) link.append(languageService.render(node, LanguageService.RenderMode.FULL)) val signature = formatText(location, link) to.appendln("${signature}
") -- cgit