Description Usage Arguments Details Value
The ui_
functions can be broken down into four main categories:
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 | ui_line(x, .envir = parent.frame())
ui_todo(x, .envir = parent.frame())
ui_done(x, .envir = parent.frame())
ui_fail(x, .envir = parent.frame())
ui_code_block(x, copy = interactive(), .envir = parent.frame())
ui_stop(x, .envir = parent.frame())
ui_warn(x, .envir = parent.frame())
ui_yeah(x, .envir = parent.frame())
ui_nope(x, .envir = parent.frame())
ui_select(x, options, .envir = parent.frame())
ui_field(x)
ui_value(x)
ui_path(x, base = NULL)
ui_code(x)
|
x |
A character vector. For block styles, conditions, and questions, each element of the
vector becomes a line, and the result is processed by
|
.envir |
Used to ensure that |
copy |
If |
base |
If specified, paths will be displayed relative to this path. |
block styles : ui_line()
, ui_done()
, ui_todo()
.
conditions : ui_stop()
, ui_warn()
.
questions : ui_yeah()
, ui_nope()
.
inline styles: ui_path()
, ui_code()
, ui_field()
,
ui_value()
.
The block styles, conditions, and questions are called for their side-effect. The inline styles return a string.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.