Nothing
All chunk options are stored in options$params.src
.
library(knitr)
knit_hooks$set(wrapper = function(before, options, envir) {
if (before) {
sprintf(" ```{r %s}\n", options$params.src)
} else " ```\n"
})
Can I write the three backticks in the output?
```{r test_label, wrapper=TRUE, eval=FALSE}
1 + 1
plot(1)
```
By default the chunk wrapper will not show up, e.g.
rnorm(100)
y ~ x
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.