string.rev <- function(x){
library(plyr)
library(dplyr)
laply(x,strsplit,split='') %>% lapply(rev) %>% lapply(paste0,collapse='')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.