| cli {cli} | R Documentation |
cli() will record all cli_* calls in expr, and emit them together
in a single message. This is useful if you want to built a larger
piece of output from multiple cli_* calls.
cli(expr)
expr |
Expression that contains |
Use this function to build a more complex piece of CLI that would not make sense to show in pieces.
Nothing.
cli({
cli_h1("Title")
cli_h2("Subtitle")
cli_ul(c("this", "that", "end"))
})