# Separate names into parts and separation patterns
parts_and_seps=function(elem){
separation_pattern="(_)|((?<=\\w)\\.(?=\\w))|((?<=[:lower:])(?=[:upper:]))"
result=list(
parts=stringr::str_split(elem,separation_pattern) %>% unlist(),
seps=stringr::str_extract_all(elem,separation_pattern) %>% unlist()
)
return(result)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.