#' Cubic a number.
#'
#' @param x A number.
#' @return The cubic of \code{x}.
#' @examples
#' cubic(2)
#'
#' @export
#'
cubic=function(x) return(x^3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.