#' Les innehold av .txt fil
#'
#' Leser inneholder i en tekst-fil med filtype .txt ved bruk av
#' \pkg{readxl} package.
#'
#' @param fil Sti og filnavn til Excel-fil
#'
#'
#' @export
les_txt <- function(fil, ...) {
tabell <- data.table::fread(file = fil, ...)
return(tabell)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.