#' Foo
#'
#' Sum function.
#'
#' @author Ivan Jacob Agaloos Pesigan
#' @param x Numeric.
#' @param y Numeric.
#' @export
#' @family Template Functions
#' @keywords template
Foo <- function(x, y) {
stopifnot(
is.numeric(x),
is.numeric(y)
)
return(x + y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.