| 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.
cli({
cli_h1("Title")
cli_h2("Subtitle")
cli_ul(c("this", "that", "end"))
})
#> #> ── Title ───────────────────────────────────────────────────────────── #> #> ── Subtitle ── #> #> • this #> • that #> • end
Nothing.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.