#' @export
last <- function(x) UseMethod("last")
#' @export
last.default <- function(x) tail(x,1)
#'@export
last.list <- function(x) x[[ length(x) ]]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.