Is there a way to have long lines of code wrapped in Quarto, revealjs output? code-overflow: wrap
, which works for html
output does not seem to work in revealjs
:
---
format: revealjs
---
## A title
```{r}
#| echo: true
#| code-overflow: wrap
multipoint <- sf::st_multipoint(rbind(c(3.2,4), c(3,4.6), c(3.8,4.4), c(3.5,3.8), c(3.4,3.6), c(3.9,4.5)))
#This should be wrapped.
```