nathaneastwood / knitrhooks

Extend {knitr} with hooks
MIT License
33 stars 2 forks source link

Add option to use source_verbatim with and without eval #8

Closed nathaneastwood closed 5 years ago

nathaneastwood commented 5 years ago

Currently the source_verbatim option will output the code. if you include eval = FALSE, it will still include this in the verbatim. Example:

```{r, eval = FALSE}
1+1
```