# SnakeConvert ####
# from this tweet https://twitter.com/coolbutuseless/status/1173587086307287046 ###
snake_case_convert <- function(Word){
tolower(gsub('(?<!^)([A-Z]', '_\\1', Word, perl = TRUE))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.