#' Greetings in Spanish
#'
#' This function says hi to people
#'
#' @param nombre The name of the person we are saying hi to in Spanish.
#'
#' @return A `character(1)` with the greetings in Spanish
#' @export
#'
#' @examples
hola <- function(nombre) {
paste0("Hola ", nombre, "=)")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.