#' @title Hello Goodbye
#' @description Say hello how you like
#'
#' @param name Insert a name, or saying
#'
#' @importFrom stringr str_c
#'
#' @return vector with salutation
#' @export
#'
#' @examples
#' hello_goodbye('Name')
hello_goodbye <- function(name){
stopifnot(is.character(name))
stringr::str_c(hello(name), ' and ', tolower(goodbye(name)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.