ptd_capitalise <- function(x) {
substr(x, 1, 1) <- toupper(substr(x, 1, 1))
x
}
ptd_title_case <- function(x) {
ptd_capitalise(gsub("_(.)", " \\U\\1", x, perl = TRUE))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.