#' Divide x
#'
#' @description Divide x by y
#'
#' @param x Numerator
#' @param y Denominator
#'
#' @return x/y
#' @export
#'
#' @examples
#' div_x(1,2)
#'
div_x= function(x=10,y){
x/y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.