diff options
Diffstat (limited to 'core/src/main/kotlin/pages/CommentsToContentConverter.kt')
-rw-r--r-- | core/src/main/kotlin/pages/CommentsToContentConverter.kt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/src/main/kotlin/pages/CommentsToContentConverter.kt b/core/src/main/kotlin/pages/CommentsToContentConverter.kt new file mode 100644 index 00000000..78c7ff4c --- /dev/null +++ b/core/src/main/kotlin/pages/CommentsToContentConverter.kt @@ -0,0 +1,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> +} |