class markdown::BulletList

sys::Obj
  markdown::Node
    markdown::Block
      markdown::ListBlock
        markdown::BulletList

@Js

Source

A bullet list:

- One
- Two
- Three

The children are ListItem blocks, which contain other blocks (or nested lists).

make

new make(Str? marker := null)

Source

marker

Str? marker

Source

The bullet list marker that was used, e.g. -, *, or +, if available, or null otherwise.