Is is possible to hide some comments in code when kniting using knitr / R markdown? Example:
--- title: "SOSO" author: "SO" date: '2017-06-06' output: pdf_document --- ```{r} # Generate some data rnorm(2) ## But keep this comment ``` When kniting I would like the first comment to disapear, but keep the second one somehow.
