#' Add two numbers
#'
#' Adds two numbers together via [`+`].
#' @param x,y number to add to the other
#' @return Single number
#' @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.