Consider this code in Quarto qmd
document:
```{css}
h1 {
color: blue;
}
```
What is the official way to hide non-R and non-Python code chunks with languages where #
is not a comment?
I'm aware of Rmd way, but is it the official way?
```{css, echo=FALSE}