Nothing
# Insert newline every X characters
insert_newline <- function(string, every_x_chars) {
gsub(paste0("(.{", every_x_chars, "})"), "\\1\n", string)
}
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.