cli_h1 {cli} | R Documentation |
CLI headings
Description
cli has three levels of headings.
Usage
cli_h1(text, id = NULL, class = NULL, .envir = parent.frame())
cli_h2(text, id = NULL, class = NULL, .envir = parent.frame())
cli_h3(text, id = NULL, class = NULL, .envir = parent.frame())
Arguments
text |
Text of the heading. It can contain inline markup. |
id |
Id of the heading element, string. It can be used in themes. |
class |
Class of the heading element, string. It can be used in themes. |
.envir |
Environment to evaluate the glue expressions in. |
Details
This is how the headings look with the default builtin theme.
cli_h1("Header {.emph 1}") cli_h2("Header {.emph 2}") cli_h3("Header {.emph 3}")
#> #> ── Header 1 ────────────────────────────────────────────────────────── #> #> ── Header 2 ── #> #> ── Header 3
See Also
These functions supports inline markup.
Other functions supporting inline markup:
cli_abort()
,
cli_alert()
,
cli_blockquote()
,
cli_bullets_raw()
,
cli_bullets()
,
cli_dl()
,
cli_li()
,
cli_ol()
,
cli_process_start()
,
cli_progress_along()
,
cli_progress_bar()
,
cli_progress_message()
,
cli_progress_output()
,
cli_progress_step()
,
cli_rule
,
cli_status_update()
,
cli_status()
,
cli_text()
,
cli_ul()
,
format_error()
,
format_inline()
[Package cli version 3.6.3 Index]