Repository for the Github pages: Microbiome analysis at KU FOOD
Steps to render the static website:
- Render *.Rmd files in R after install rmarkdown.
rmarkdown::render("1_microbiome_r.Rmd")
rmarkdown::render("index.Rmd")
- Build a static website with rendered *.html files, following the structure of _site.yml
rmarkdown::render_site()
- change
_site/
according to your choice (/docs is used to hold Github pages)
mv _site docs
More details about R markdown can be found on Rstudio website: here and there.