I am trying to determine if there is an existing option to have code_folding enabled within a distill_article and not display individual code chunks for embedded code that displays output.
title: "Example code"
output:
distill::distill_article:
code_folding: TRUE
``{r, code_folding = 'I do not want to show this'}
knitr::include_graphics('logo.png')
``
Using include = FALSE removes the output - so I don't get the image.
``{r, include = FALSE}
knitr::include_graphics('logo.png')
``
Is there a way to display output and not show code chunks for individual embedded chunks?