diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2019-12-13 16:24:16 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2019-12-16 16:43:35 +0100 |
commit | 288431f21b18f5311de77c9afcb29346cb7c6498 (patch) | |
tree | 0dbadd88532daae26f4edacba15cd43c3cc19b20 /core/src/main/kotlin/pages/CommentsToContentConverter.kt | |
parent | 54f587baf12ecf8f0115cb406203df14c4d6ab5d (diff) | |
download | dokka-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.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> +} |