I want to create a R Notebook/markdown output and am failing hard with formatting code chunk outputs.
When creating a code chunk where I don't specify the language, the code chunk is always printed with white background, whereas code chunks specified with the R language are rendered with grey background.
Update/Edit: the non-R code won't contain valid R objects/commands. Instead it just contains random text that I want to put into grey code boxes (could be some gibberish like "asdgfasdtcasdhsagd").
How can I also provide a grey background to the other/all code chunks?
Example (Rmd file)
---
title: "R Notebook"
output: html_notebook
---
```
TEST
ABC
```
TEST
ABC
```{r}
x <- 3
```
The code chunks for TEST/ABC are displayed with white background (but I want them to be grey). Any ideas? Thanks.