#' @title Hello World
#' @description Say hello how you like
#'
#' @param name Insert a name, or saying
#'
#' @return vector with salutation
#' @export
#'
#' @examples
hello <- function(name) {
stopifnot(is.character(name))
print(paste0("Hello, ", name,"!"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.