#' Utils
#'
#' Converti un vecteur R en code SQL
#'
#' @param x Vecteur
#'
#' @return c("x", "y") -> "'x','y'"
#' @encoding UTF-8
#' @keywords internal
#'
#' @export
qu <- function(x) {
return(paste(paste0("'",x,"'"), collapse = ", "))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.