OrderedList {pandocfilters} | R 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))
[Package pandocfilters version 0.1-6 Index]