my.strip.blanks <-
function (str, StripChar = " ", FillChar = "")
{
char <- wqm.string.to.chars(str)[[1]]
blanks <- is.element(char, StripChar)
char[blanks] <- FillChar
paste(char, collapse = "")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.