For code blocks that output more than once R Markdown breaks the code block up with the output eg.
```{r}
("one line")
("second line")
```
is there anyway to replicate the following output without having to duplicate the code block?
```{r, eval = FALSE}
("one line")
("second line")
```
```{r, echo = FALSE, collapse = TRUE}
("one line")
("second line")
```