Is there a way to not display 'text' (not code) in an R markdown when it is output to HTML? For example:
```{r, echo=False}
I want the output of this R Code
```
This is text to introduce the next section in the .Rmd file. I, however, do NOT want this to appear in my .HTML file.
```{r, echo=False}
Next section of R code to display
```