#' Convert output to text for DB query
#'
#' @param x
#'
#' Not exported
#' @noRd
sqltext <- function(x){
out <- x[1]
if(length(x) > 1){
for(i in 2:length(x)){
out <- paste(out, x[i], sep = "','")
}
}
out <- paste("'", out, "'", sep = '')
return(out)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.