I have created the following R Notebook in RStudio:
---
title: "test"
author: "by me"
date: 'last updated: Jan 23, 2022'
output:
html_notebook:
toc: yes
toc_float: yes
number_sections: yes
highlight: haddock
---
# First headline
## Packages don't load quietly
```{r}
library(tidyverse, warn.conflicts = F, quietly = T)
```
Now, irrespective if I just preview the file (which I understand is the html notebook file) or if I knit it to html I get the full babbling when loading the package. If I just "preview" I only get it the first time I preview. When knitting to html, the all messages always appear.
(BTW: if someone could explain to me the differences between the "preview" version and "knit to HTML", that would be great.)