get_header <- function(x, sep = ",") {
readLines(x, n = 1) %>%
stringr::str_split(sep) %>%
`[[`(1) %>%
trimws()
}
is_integer <- function(x) {
is.integer(x) || (is.numeric(x) && all(x == as.integer(x)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.