md_order {gluedown} | R Documentation |
Markdown ordered list
Description
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.
Usage
md_order(x, marker = c(".", ")"), seq = TRUE, pad = TRUE)
Arguments
x |
The vector of numbered list items. |
marker |
The ordered list marker following each arabic digits; either
|
seq |
logical; Should sequential numbers be used? Defaults to |
pad |
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 |
Details
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.
Value
A glue
vector with length equal to x
.
See Also
Other container block functions:
md_bullet()
,
md_list()
,
md_quote()
,
md_task()
Examples
md_order(state.name[1:5])
md_order(sample(state.name, 5), marker = ")")
md_order(sample(state.name, 5), seq = FALSE)