merge.config <- function(...) {
configs <- list(...)
if (length(configs) == 1) {
configs
} else {
configs <- lapply(configs, unclass)
modifiedConfig <- Reduce(modifyList, x = configs[-1], init = configs[[1]])
as_config(modifiedConfig)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.