| cli_li {cli} | R Documentation |
A list item is a container, see containers.
cli_li( items = NULL, id = NULL, class = NULL, .auto_close = TRUE, .envir = parent.frame() )
items |
Character vector of items, or |
id |
Id of the new container. Can be used for closing it with
|
class |
Class of the item container. Can be used in themes. |
.auto_close |
Whether to close the container, when the calling
function finishes (or |
.envir |
Environment to evaluate the glue expressions in. It is
also used to auto-close the container if |
fun <- function() {
ul <- cli_ul()
cli_li("one:")
cli_ol(letters[1:3])
cli_li("two:")
cli_li("three")
cli_end(ul)
}
fun()
The id of the new container element, invisibly.