#' extract strings from the heading
#'
#' For summary headers, extract string value
#' description=string;
#'
#' @param inputString string with the value
#'
#' @return string value
#'
#'
#' @export
extracSrting <- function(inputString){
inputString <- sub('^.*=', '', inputString)
inputString <- sub(';', '', inputString)
inputString <- as.character(inputString)
return(inputString)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.