#' Title
#'
#' @param url_se string
#'
#' @return tibble
#' @export
get_data_se <- function(url_se) {
texto_reservatorio_se <- pdftools::pdf_text(url_se)
ano_arquivo <- basename(url_se) %>%
stringr::str_extract('_(\\d+)\\.') %>% readr::parse_number()
purrr::map_dfr(texto_reservatorio_se,
~pdf_to_se(.x,ano_arquivo))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.