#' Subtract two numbers
#'
#' @param x A number.
#' @param y A number.
#'
#' @return The subtraction of \code{y} from \code{x}.
#'
#' @examples
#' subtract_two_numbers(1, 1)
#' subtract_two_numbers(10, 1)
#'
#' @export
subtract_two_numbers <- function(x, y) {
x - y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.