#' Check that a string is only letters
#'
#' @param x
#'
#' @return
#' @export
#'
#' @examples
letters_only <- function(x){
return(!grepl("[^A-Za-z]", x) )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.