#' Return the sum of two numbers
#'
#' @param a Number one
#' @param b Number two
#'
#' @return Sum of two numbers
#' @export
#'
#' @examples
#' library(newPackage)
#' add(2, 5)
add <- function(a, b) {
a + b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.