# Pulled from threadr
cli_date <- function() stringr::str_c(str_date_formatted(), ":")
date_message <- function() stringr::str_c(str_date_formatted(), ": ")
str_date_formatted <- function(date = NA, time_zone = TRUE,
fractional_seconds = TRUE) {
# Get date if not supplied
if (is.na(date)[1]) date <- lubridate::now(tz = Sys.timezone())
# Format string
format_date <- ifelse(
fractional_seconds,
"%Y-%m-%d %H:%M:%OS3",
"%Y-%m-%d %H:%M:%S"
)
# Format
x <- format(date, format = format_date, usetz = time_zone)
return(x)
}
str_to_underscore <- function(x) {
x <- gsub("([A-Za-z])([A-Z])([a-z])", "\\1_\\2\\3", x)
x <- gsub(".", "_", x, fixed = TRUE)
x <- gsub(":", "_", x, fixed = TRUE)
x <- gsub("\\$", "_", x)
x <- gsub(" |-", "_", x)
x <- gsub("__", "_", x)
x <- gsub("([a-z])([A-Z])", "\\1_\\2", x)
x <- stringr::str_to_lower(x)
x <- stringr::str_trim(x)
return(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.