Description Usage Arguments Details See Also Examples
Note that this is in addition to the builtin theme. To use this theme,
you can set it as the cli.theme
option:
1 | simple_theme(dark = getOption("cli_theme_dark", "auto"))
|
dark |
Whether the theme should be optiomized for a dark
background. If |
1 | options(cli.theme = cli::simple_theme())
|
and then CLI apps started after this will use it as the default theme. You can also use it temporarily, in a div element:
1 | cli_div(theme = cli::simple_theme())
|
themes, builtin_theme()
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | cli_div(theme = cli::simple_theme())
cli_h1("Heading 1")
cli_h2("Heading 2")
cli_h3("Heading 3")
cli_alert_danger("Danger alert")
cli_alert_warning("Warning alert")
cli_alert_info("Info alert")
cli_alert_success("Success alert")
cli_alert("Alert for starting a process or computation",
class = "alert-start")
cli_text("Packages and versions: {.pkg cli} {.version 1.0.0}.")
cli_text("Time intervals: {.timestamp 3.4s}")
cli_text("{.emph Emphasis} and {.strong strong emphasis}")
cli_text("This is a piece of code: {.code sum(x) / length(x)}")
cli_text("Function names: {.fn cli::simple_theme}")
cli_text("Files: {.file /usr/bin/env}")
cli_text("URLs: {.url https://r-project.org}")
cli_h2("Longer code chunk")
cli_par(class = "code R")
cli_verbatim(
'# window functions are useful for grouped mutates',
'mtcars %>%',
' group_by(cyl) %>%',
' mutate(rank = min_rank(desc(mpg)))')
cli_end()
cli_h2("Even longer code chunk")
cli_par(class = "code R")
cli_verbatim(format(ls))
cli_end()
cli_end()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.