# body and subject
check4quotes <-
function(vec, name_of_thing="Body")
{
if(length(grep("'", vec)) > 0 ||
length(grep('"', vec)) > 0)
stop(name_of_thing, " can't contain any single- or double-quotes")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.