fix_names <- function(x) {
x %>%
stringi::stri_trans_general("Latin-ASCII") %>%
stringr::str_replace("'", "'")
}
standardise_name <- function(x) {
stringr::str_replace_all(x, " ", "") %>%
tolower()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.