I’ve recently asked on the Rstudio community page how to make code chunks appear verbatim.

Not sure what I mean by this?

Well, showing your entire code chunk is something taht comes up when you are teaching people about rmarkdown. One of the issues is that you want to show people what an rmarkdown code chunk looks like - not just echo the output.

For example, here is an rmarkdown code chunk:

library(ggplot2)
ggplot(airqual …