take a character vector and return a glue vector of valid ordered list items.
When printed together, these ordered list items create a ordered list. This
container block is rendered as the <ol>
HTML tag, with each element of the
vector creating a separate <li>
tag.
md_order(x, marker = c(".", ")"), seq = TRUE, pad = TRUE)
The vector of numbered list items.
The ordered list marker following each arabic digits; either
.
or )
.
logical; Should sequential numbers be used? Defaults to TRUE
. If
FALSE
, each element will be preceded by the number one; many markdown
engines will automatically render repeated ones as a sequential list.
logical; If sequential numbers are used, should they be padded
with zeroes on the left to match the width of the greatest number? Defaults
to TRUE
.
A glue
vector with length equal to x
.
A list is a sequence of one or more list items of the same type. The list items may be separated by any number of blank lines.
Two list items are of the same type if they begin with a list marker of the
same type. Two list markers are of the same type if (b) they are ordered list
numbers with the same delimiter (either .
or )
).
A list is an ordered list if its constituent list items begin with ordered list markers, and a bullet list if its constituent list items begin with bullet list markers.
The start number of an ordered list is determined by the list number of its initial list item. The numbers of subsequent list items are disregarded.
md_order(state.name[1:5])
#> 1. Alabama
#> 2. Alaska
#> 3. Arizona
#> 4. Arkansas
#> 5. California
md_order(sample(state.name, 5), marker = ")")
#> 1) Arkansas
#> 2) Pennsylvania
#> 3) Florida
#> 4) California
#> 5) Washington
md_order(sample(state.name, 5), seq = FALSE)
#> 1. Mississippi
#> 1. Iowa
#> 1. Illinois
#> 1. Alaska
#> 1. Texas