blob: 406065d69a769db5e94317019232e83a4fca0df0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
package org.jetbrains.dokka
public open class HtmlFormatService(locationService: LocationService, signatureGenerator: LanguageService)
: StructuredFormatService(locationService, signatureGenerator) {
override val extension: String = "html"
override public fun formatText(text: String): String {
return text.htmlEscape()
}
override fun appendBlockCode(to: StringBuilder, line: String) {
to.appendln("<code>")
to.appendln(formatText(line))
to.appendln("</code>")
}
override fun appendBlockCode(to: StringBuilder, lines: Iterable<String>) {
to.appendln("<code>")
to.appendln(lines.map { formatText(it) }.join("\n"))
to.appendln("</code>")
}
override fun appendHeader(to: StringBuilder, text: String, level: Int) {
to.appendln("<h$level>${formatText(text)}</h$level>")
}
override fun appendText(to: StringBuilder, text: String) {
to.appendln("<p>${formatText(text)}</p>")
}
override fun appendLine(to: StringBuilder, text: String) {
to.appendln("${formatText(text)}<br/>")
}
override fun appendLine(to: StringBuilder) {
to.appendln("<br/>")
}
override fun formatLink(text: String, location: Location): String {
return "<a href=\"${location.path}\">${formatText(text)}</a>"
}
override fun formatBold(text: String): String {
return "<b>${formatText(text)}</b>"
}
override fun formatCode(code: String): String {
return "<code>${formatText(code)}</code>"
}
override fun formatBreadcrumbs(items: Iterable<FormatLink>): String {
return items.map { formatLink(it) }.joinToString(" / ")
}
override fun appendOutlineChildren(to: StringBuilder, nodes: Iterable<DocumentationNode>) {
}
override fun appendOutlineHeader(to: StringBuilder, node: DocumentationNode) {
}
}
|