cli_par {cli} | R Documentation |
The builtin theme leaves an empty line between paragraphs. See also containers.
cli_par(id = NULL, class = NULL, .auto_close = TRUE, .envir = parent.frame())
id |
Element id, a string. If |
class |
Class name, sting. 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 |
clifun <- function() { cli_par() cli_text(cli:::lorem_ipsum()) } clifun() clifun()
The id of the new container element, invisibly.