class

Crst::BulletList

Inherits Crst::Node < Reference < Object

Bullet (unordered) list container

Contains multiple ListItem nodes, each representing a bullet point. Created from RST text using -, *, or + markers.

Example:

# RST: "- First item\n- Second item"
bullet_list = Crst::BulletList.new
bullet_list.items << Crst::ListItem.new

Instance methods

items

Items in this bullet list

Source
items=(items : Array(Crst::ListItem))

Items in this bullet list

Source