aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/pages/CommentsToContentConverter.kt
blob: 78c7ff4cf1d6955893602b9ced5449b3ddda5115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.jetbrains.dokka.pages

import org.jetbrains.dokka.model.doc.DocTag

interface CommentsToContentConverter {
    fun buildContent(
        docTag: DocTag,
        dci: DCI,
        platforms: Set<PlatformData>,
        styles: Set<Style> = emptySet(),
        extras: Set<Extra> = emptySet()
    ): List<ContentNode>
}