Is it possible to get a nonformated markdown text inside a code chunk? My goal is to diplay a description inside a for
cycle. In the example below, such operation leads to splitting the code into two syntactically invalid chunks:
I am using for cycle here
```{r results='hide'}
for(i in 1:5){
foo()
```
There is a lot of interesting stuff inside
```{r results='hide'}
bar()
}
```
which would ideally generate:
I am using for cycle here
for(i in 1:5){
foo()
There is a lot of interesting stuff inside
bar()
}