tirar_backslash<-function(string) {
gsub("\\\\", "", string)
}
retirar_backslash<-function(string) {
gsub("([\\])", "", string)
}
retirar_backslash2<-function(string) {
gsub("([\\])", "", string, fixed=TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.