html_notebook ignores global chunk options
问题 Is there a way to use global chunk options in html_notebooks? This html_document only shows the title (as desired in this MWE): --- title: "Test" output: html_document --- ```{r setup, echo=FALSE} library(knitr) opts_chunk$set(echo=FALSE, results='hide', fig.keep='none') ``` ```{r} 1+1 plot(1:5, 1:5) ``` However, the very same document as an html_notebook shows all code chunks and output (the global chunk options are ignored): --- title: "Test" output: html_notebook --- ```{r setup, echo