strip.char <-
function (str, char)
{
the.chars <- cparse(str)
pos.of.char <- the.chars == char
if (any(pos.of.char))
return(paste(the.chars[!pos.of.char], collapse = ""))
else return(str)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.