#' Import excel file
#'
#' @param filepath a string indicating the relative or absolute
#' filepath of the file to import
#'
#' @return a [tibble][tibble::tibble-package] of each row
#' corrresponding to a line of the text file, with the column
#' named "text"
import_excel <- function(filepath){
readxl::read_excel(filepath) ## %>%
## table_textcol()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.