#' Add together two numbers
#'
#' @param x A number
#' @param y A number
#' @return The product of \code{x} and \code{y}
#' @examples
#' product(7,8)
#' @export
product <- function(x,y){
x * y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.