class markdown::OrderedList

sys::Obj
  markdown::Node
    markdown::Block
      markdown::ListBlock
        markdown::OrderedList

@Js

Source

An ordered list:

1. One
2. Two
3. Three

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

make

new make(Int? startNumber, Str? markerDelim)

Source

markerDelim

Str? markerDelim

Source

The delimiter used in the marker, e.g. . or ), if available, or null otherwise

startNumber

Int? startNumber

Source

The start number used in the marker, e.g. 1, if available, or null otherwise