It is often useful to print out a list of items, tasks a function or package performs, or a list of notes.

cli_memo(text, id = NULL, class = NULL, .envir = parent.frame())

Arguments

text

Character vector of items. See details below on how names are interpreted.

id

Optional od of the div.memo element, can be used in themes.

class

Optional additional class(es) for the div.memo element.

.envir

Environment to evaluate the glue expressions in.

Details

Items may be formatted differently, e.g. they can have a prefix symbol. Formatting is specified by the names of text, and can be themed. cli creates a div element of class memo for the whole memo. Each item is another div element of class memo-item-<name>, where <name> is the name of the entry in text. Entries in text without a name create a div element of class memo-item-empty, and if the name is a single space character, the class is memo-item-space.

The builtin theme defines the following item types:

You can define new item type by simply defining theming for the corresponding memo-item-<name> classes.

Examples

cli_memo(c( "noindent", " " = "indent", "*" = "bullet", "v" = "success", "x" = "danger", "!" = "warning", "i" = "info" ))
#> noindent
#> indent
#> bullet
#> success
#> danger
#> ! warning
#> info