Using quarto, I'd like to do something like:
---
params:
show_private_info: true
---
::: {.content-visible <ARGUMENT TESTING FOR `params$show_private_info`>}
Some private information
:::
Is that feasible?
Clearly something can be whipped up using an asis
(r
) code block cat
ing out the markdown, with eval
dependent on params$show_private_info
, but I'd like to avoid that detour if possible ...