#' Title
#'
#' @param name
#' @param print
#'
#' @return
#' @export
#'
#' @examples
say_aloha <- function(name, print = TRUE) {
message <- paste("Aloha,",
name,
emo::ji("palm_tree"),
emo::ji("sunny"),
emo::ji("ocean"))
if (print) {
cat(crayon::bgGreen(message))
}
invisible(message)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.