According to the Quarto docs, the figure below should be screen-width but instead it is just positioned at the left-hand side of the screen. How can I make it bigger? Adding #| layout-ncol: 1
doesn't help either.
---
title: "Test"
format: html
---
```{r}
#| column: screen
plot(pressure)
```