md_order: Markdown ordered list

View source: R/md-list.R

md_orderR 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 . or ⁠)⁠.

seq

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.

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 TRUE.

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)

gluedown documentation built on Nov. 2, 2023, 5:48 p.m.