#' A simple adding functions
#'
#' An example adding function
#' @param x a number
#' @param y another number
#' @examples
#' add(1, 2)
#' @export
add = function(x, y){
x + y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.