#' @keywords internal
.sample_name <- function(n = 10) {
name <- sample(x = c(LETTERS, letters, seq(9)), size = n, replace = TRUE)
name <- paste(name, collapse = "")
name <- make.names(name)
return(name)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.