--- title: "Vignettes on the INLAspacetime website" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Vignettes on the INLAspacetime website} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` ```{r setup, echo=FALSE,include=FALSE} ``` ## Vignettes These potentially long running examples/tutorials are available on (https://eliaskrainski.github.io/INLAspacetime/) ```{r, echo=FALSE,results="asis"} files <- list.files("web", "\\.Rmd$") for (file in files) { lines <- readLines(file.path("web", file), n = 10) title_idx <- grep("^title: ", lines) if (length(title_idx) > 0) { title <- sub("^title: ", "", lines[title_idx[1]]) title <- sub('^"', "", title) title <- sub('"$', "", title) cat("* [", title, "]( https://eliaskrainski.github.io/INLAspacetime/articles/web/", sub("\\.Rmd", ".html", file), ")\n", sep = "" ) } } ```