I'm writing a webpage on using quarto and I want to include code blocks, with the code attributes, for example:
```{r}
#| eval: false
teacher_df %>%
head(3)
```
but when I write this in a webpage it appears as so:
teacher_df %>%
head(3)
Try:
````markdown
`r ''````{r tables-mtcars}
knitr::kable(iris[1:5, ], caption = 'A caption')
```
````