#' rboolean
#'
#' A shortcut for converting a lower-case 'true' / 'false' string to an R boolean
#' @param value The value you want to convert
#' @export
rboolean <- function(value) {
rval <- ifelse(value == 'false',FALSE,TRUE)
return(rval)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.