aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
index c5136c27..52811961 100644
--- a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
+++ b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt
@@ -760,7 +760,12 @@ open class DefaultPageCreator(
headers("Name", "Summary")
)
) { key, props ->
- link(key, props.first().dri, kind = ContentKind.Main)
+ link(
+ text = key,
+ address = props.first().dri,
+ kind = ContentKind.Main,
+ styles = setOf(ContentStyle.RowTitle)
+ )
sourceSetDependentHint(props.dri, props.sourceSets, kind = ContentKind.SourceSetDependentHint) {
props.forEach {
+buildSignature(it)