#' Minus 1 function
#'
#' @param x
#' a numerical value
#' @return the input number minus 1
#' @export
#'
#' @examples
minus_1 <- function(x) {
return(x-1)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.