#' multiply two numbers
#'
#' @param a one number
#' @param b another number
#'
#' @return their multiplication
#' @export
#'
#' @examples
multiply = function(a,b){
return(a*b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.