#' My test function
#'
#' @param x The name of the person
#'
#' @return The output of \code{\link{print}}
#' @export
#'
#' @examples
#' 'hello("Jonh")
#' \dontrun{}
#' hello("Steve")
#' }
#'
hello <- function(x){
print(paste("Hello ",x,", this is the world!"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.