#' Look at flydoc title
#'
#' Look at the the title for your flydoc documnetation
#' for a given function
#'
#' @param fun A function
#' @export
Title <- function(fun){
flyget("Title", fun)
}
#' Set a title
#'
#' Set a title for your flydoc documentation for a
#' given function
#'
#' @param func A function to add a flydoc title to.
#' @param value A character string containing the
#' title to add to the function's documentation
#' @export
"Title<-" <- function(func, value){
invisible(flyassign("Title", func, value))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.