diff options
author | Błażej Kardyś <bkardys@virtuslab.com> | 2020-03-11 13:05:14 +0100 |
---|---|---|
committer | Błażej Kardyś <bkardys@virtuslab.com> | 2020-03-11 13:10:16 +0100 |
commit | 5636115aee8d13870f0d3f172667fca1b3f78276 (patch) | |
tree | a7b3621bf88ee298887e57dcbcd039f5df1f34cd /core/src/main/kotlin/pages | |
parent | 11b223daa2c54d2b86efb5e6054fd7205ed0b37a (diff) | |
download | dokka-5636115aee8d13870f0d3f172667fca1b3f78276.tar.gz dokka-5636115aee8d13870f0d3f172667fca1b3f78276.tar.bz2 dokka-5636115aee8d13870f0d3f172667fca1b3f78276.zip |
Classlike header and other ui fixes
Diffstat (limited to 'core/src/main/kotlin/pages')
-rw-r--r-- | core/src/main/kotlin/pages/ContentNodes.kt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/src/main/kotlin/pages/ContentNodes.kt b/core/src/main/kotlin/pages/ContentNodes.kt index 2e14dfb9..6a8ad3b3 100644 --- a/core/src/main/kotlin/pages/ContentNodes.kt +++ b/core/src/main/kotlin/pages/ContentNodes.kt @@ -25,6 +25,15 @@ data class ContentText( override fun withNewExtras(newExtras: PropertyContainer<ContentNode>): ContentNode = copy(extra = newExtras) } +data class ContentBreakLine( + override val dci: DCI, + override val platforms: Set<PlatformData>, + override val style: Set<Style> = emptySet(), + override val extra: PropertyContainer<ContentNode> = PropertyContainer.empty() +): ContentNode { + override fun withNewExtras(newExtras: PropertyContainer<ContentNode>): ContentNode = copy(extra = newExtras) +} + /** Headers */ data class ContentHeader( override val children: List<ContentNode>, |