This is driving me crazy. It's just a basic example. This is the Quarto code.
```{r}
#| echo: true
library(tidyverse)
library(skimr)
```
```{r}
#| echo: true
skim(diamonds)
```
The output I get is:
The question is: How do I extend the width of the content box to avoid the wrapping? I have tried everything.
Thanks in advance.