Nothing
notebook_render_html_widget <- function(output) {
unpreserved <- htmltools::extractPreserveChunks(output)
meta <- base64_encode_object(attr(output, "knit_meta"))
before <- sprintf("\n<!-- rnb-htmlwidget-begin %s-->", meta)
after <- "<!-- rnb-htmlwidget-end -->\n"
pasted <- paste(before, unpreserved$value, after, sep = "\n")
annotated <- htmltools::restorePreserveChunks(pasted,
unpreserved$chunks)
attributes(annotated) <- attributes(output)
return(annotated)
}
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.