#' @title Squared function
#'
#' @param x
#'
#' @description squaring a vector
#'
#' @return vector squared
#' @export
#'
#' @examples
#' \dontrun{x=1:30, myf(x)}
myf = function(x){
x^2
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.