cli_ul {cli} | R Documentation |
An unordered list is a container, see containers.
cli_ul( items = NULL, id = NULL, class = NULL, .close = TRUE, .auto_close = TRUE, .envir = parent.frame() )
items |
If not |
id |
Id of the list container. Can be used for closing it with
|
class |
Class of the list container. Can be used in themes. |
.close |
Whether to close the list container if the |
.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 |
The id of the new container element, invisibly.
## Specifying the items at the beginning cli_ul(c("one", "two", "three")) ## Adding items one by one cli_ul() cli_li("one") cli_li("two") cli_li("three") cli_end() ## Complex item, added gradually. cli_ul() cli_li() cli_verbatim("Beginning of the {.emph first} item") cli_text("Still the first item") cli_end() cli_li("Second item") cli_end()