#' First letter to upper
#'
#' @param string Character (vector).
#'
#' @export
camelcase <- function(string) {
sub('^(\\w?)', '\\U\\1', string, perl=T)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.