Nothing
This vignette contains some data about the Star Wars films for use in rvest examples and vignettes.
library(rvest) crawl_html <- function(x) { x %>% gsub("\r", "", .) %>% gsub("\n\n", "</p><p>", .) %>% gsub("\n", " ", .) %>% paste0("<p>", ., "</p>") } film_desc <- function(x) { glue::glue_data(x, " <section> <h2 data-id='{episode_id}'>{title}</h2> <p>Released: {release_date}</p> <p>Director: <span class='director'>{director}</span></p> <div class='crawl'>{crawl_html(opening_crawl)}</div> </section>") } films <- repurrrsive::sw_films films <- films[order(sapply(films, "[[", "episode_id"))] descs <- vapply(films, film_desc, character(1)) writeLines(descs)
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.