package org.jetbrains.dokka.pages import org.jetbrains.dokka.links.DRI interface ContentNode { val platforms: List val annotations: List } /** Comment consisting of parts, eg. [ContentText]s, [ContentLink]s and so on */ data class ContentComment(val parts: List, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** Simple text */ data class ContentText(val text: String, override val platforms: List, override val annotations: List = emptyList() ): ContentNode ///** Headers */ TODO for next iteration data class ContentHeader(val text: String, val level: Int, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** Lists */ data class ContentList(val items: List, val ordered: Boolean, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** Styled elements, eg. bold, strikethrough, emphasis and so on **/ data class ContentStyle(val items: List, val style: ContentNode, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** Code blocks */ data class ContentCode(val code: String, val language: String, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** Symbols, eg. `open fun foo(): String`, or `class Bar`, consisting of parts like [ContentText] and [ContentLink] */ data class ContentSymbol(val parts: List, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** All links that have te be resolved */ data class ContentLink(val text: String, val address: DRI, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** Blocks of [ContentNode]s with name, eg. Functions, Types, Properties, etc. */ data class ContentBlock(val name: String, val children: List, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** Logical grouping of [ContentNode]s, eg. [ContentLink], [ContentText] and [ContentSymbol] for one entity */ data class ContentGroup(val children: List, override val platforms: List, override val annotations: List = emptyList() ): ContentNode /** All annotations */ data class Annotation(val name: String)