#' @export
merge_lists = function(list_obj){
n = length(list_obj)
out = list_obj[[1]]
for(i in 2:n){
out = merge(out,list_obj[[i]])
}
return(out)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.