| show_config | R Documentation |
Show a configuration file
show_config(path = get_config(), ...)
path |
A string giving the path to a configuration file. |
... |
Other arguments passed to |
Prints to the console the configuration file.
FINANCIAL.TIMESTAMP
Other functions to deal with configuration files:
create_config(),
default_config(),
edit_config()
# A configuration file stored in the package
path <- default_config()
show_config(path, n_max = 10)
# Create a new configuration file to show a more general case
config_file <- glue::glue("
default:
a_field: a_value
")
config_path <- tempfile()
readr::write_lines(config_file, config_path)
show_config(config_path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.