#' Load an R object
#'
#' Load an R object.
#' @param fname The file name of the R object
#'
#' @return A R object
#'
#' @export
utils_loadObject<-function(fname) {
x = load(fname)
return(get(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.