OrderedList

data class OrderedList(val tight: Boolean, val start: Int, val delimiter: Char, val items: List<Block.ListItem>) : Block

An ordered list.

Constructors

Link copied to clipboard
constructor(tight: Boolean, start: Int, delimiter: Char, items: List<Block.ListItem>)

Properties

Link copied to clipboard

the delimiter character used (. or )).

Link copied to clipboard

the list items.

Link copied to clipboard
val start: Int

the start number of the list.

Link copied to clipboard

true if the list is tight (no blank lines between items).