#' Function to convert text to proper case
#'
#' @param text a character vector
#' @return a character vector converted to "proper" case, where each word
#' starts with a capital, and all subsequent letters are lower case
#'
#' @export
propercase <- function(text) {
gsub("(\\w)([\\w|']*)", "\\U\\1\\L\\2", text, perl = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.