get_internal_data <- function(dnr = NULL, element = NULL) {
if (is.null(dnr)) {
return(NULL)
}
cmd <- paste0("donorloader:::", dnr)
if (is.null(element)) {
return(eval(parse(text = cmd)))
}
eval(parse(text = cmd))[[element]]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.