#is.dp (double punctuation) internal function for checking/warning
#extra punctuation
is.dp <- function(text.var) {
punct <- c(".", "?", "!", "|")
any(sapply(strsplit(text.var, NULL), function(x) {
sum(x %in% punct) > 1
}
))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.