blob: 6f81e8eb7a47267c6c8f193b714aa28de1a9ad3a (
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
|
package org.jetbrains.dokka
public open class HtmlFormatService(locationService: LocationService, signatureGenerator: LanguageService)
: StructuredFormatService(locationService, signatureGenerator) {
override val extension: String = "html"
override fun appendBlockCode(to: StringBuilder, line: String) {
to.appendln("<code>")
to.appendln(line)
to.appendln("</code>")
}
override fun appendBlockCode(to: StringBuilder, lines: Iterable<String>) {
to.appendln("<code>")
to.appendln(lines.join("\n"))
to.appendln("</code>")
}
override fun appendHeader(to: StringBuilder, text: String, level: Int) {
to.appendln("<h$level>$text</h$level>")
}
override fun appendText(to: StringBuilder, text: String) {
to.appendln("<p>$text</p>")
}
override fun appendLine(to: StringBuilder, text: String) {
to.appendln("$text<br/>")
}
override fun appendLine(to: StringBuilder) {
to.appendln("<br/>")
}
override fun formatLink(text: String, location: Location): String {
return "<a href=\"${location.path}\">${text}</a>"
}
override fun formatBold(text: String): String {
return "<b>$text</b>"
}
override fun formatCode(code: String): String {
return "<code>$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) {
}
}
|