#' trlow
#'
#' Trims and sets to lowercase
#'
#' @param x is a character vector
#'
#' @return an lowercase character vector with leading and trailing spaces removed
#'
#' @examples
#' trlow(" foo ")
#'
#' @export
trlow <- function(x) {tolower(trim(x))}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.