BulletList

data class BulletList(val tight: Boolean, val marker: Char, val items: List<Block.ListItem>) : Block

An unordered (bullet) list.

Constructors

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

Properties

Link copied to clipboard

the list items.

Link copied to clipboard

the bullet character used (-, +, or *).

Link copied to clipboard

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