Table

data class Table(val header: Table.TableRow, val rows: List<Table.TableRow>) : MarkdownElement

Constructors

Link copied to clipboard
constructor(header: Table.TableRow, rows: List<Table.TableRow>)

Types

Link copied to clipboard
Link copied to clipboard
data class TableCol(val item: MarkdownElement) : MarkdownElement
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class TableDSL
Link copied to clipboard
data class TableRow(val cols: List<MarkdownElement>) : MarkdownElement
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard

It is a descriptor of the markdown element. It should be MarkdownElementDescriptor<{THIS}>

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun encode(): String