aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/pages/CommentsToContentConverter.kt
diff options
context:
space:
mode:
authorAndrzej Ratajczak <andrzej.ratajczak98@gmail.com>2019-12-13 16:24:16 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2019-12-16 16:43:35 +0100
commit288431f21b18f5311de77c9afcb29346cb7c6498 (patch)
tree0dbadd88532daae26f4edacba15cd43c3cc19b20 /core/src/main/kotlin/pages/CommentsToContentConverter.kt
parent54f587baf12ecf8f0115cb406203df14c4d6ab5d (diff)
downloaddokka-288431f21b18f5311de77c9afcb29346cb7c6498.tar.gz
dokka-288431f21b18f5311de77c9afcb29346cb7c6498.tar.bz2
dokka-288431f21b18f5311de77c9afcb29346cb7c6498.zip
Changes naming and applies pull request's requirements
Diffstat (limited to 'core/src/main/kotlin/pages/CommentsToContentConverter.kt')
-rw-r--r--core/src/main/kotlin/pages/CommentsToContentConverter.kt13
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>
+}