OrderedList: Ordered List

View source: R/pandocfilters.R

OrderedListR Documentation

Ordered List

Description

Constructs a block object of type "OrderedList".

Usage

OrderedList(lattr, llblocks)

Arguments

lattr

a list of attributes

llblocks

a list of lists of blocks

Examples

ordered_1 <- Plain("A")
ordered_2 <- list(Plain(Str("B")))
ordered_3 <- list(Plain(list(Str("C"))))
OrderedList(ListAttributes(), ordered_1)
OrderedList(ListAttributes(), list(ordered_1, ordered_2, ordered_3))

pandocfilters documentation built on Aug. 12, 2022, 1:05 a.m.