#' @importFrom rlang "eval_tidy"
#' @importFrom rlang "quo_text"
gvcharexpr <- function (u)
{
ischar <- tryCatch(is.character(eval_tidy(u)),
error=function (e) FALSE)
if (!ischar)
{
u <- quo_text(u)
} else {
u <- eval_tidy(u)
}
u
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.