Nothing
#' @keywords internal
normalize_roles <- function(people, default_role = "ctb") {
lapply(people, function(p) {
if (!inherits(p, "person")) {
return(p)
}
if (is.null(p$role) || !any(nzchar(p$role))) {
p$role <- default_role
}
p
})
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.