toproper = function(str) {
first = toupper(substr(str, 1, 1))
rest = tolower(substr(str, 2, 100))
return(paste0(first, rest))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.