#' Convert underscores for reporting in LaTeX
#'
#' Convert underscores for reporting in LaTeX
#'
#' @param text a character vector containing underscores
#' @return A character vector ready to be printed with LaTeX
#' @author Hugo Varet
# created March 9th, 2015
convertUnderscores <- function(text){
gsub("_", "\\\\_", text)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.