#' Title
#'
#' @param a First number to add
#' @param b Second number to add
#'
#' @return The sum of numbers a and b
#' @export
#'
#' @examples
#' add_two(1, 4)
add_two <- function(a, b) {
a + b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.