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