I would like to render to a paged html document. I see instructions here for placing {{< pagebreak >}} between chunks to produce this, but I don't see the intended result in the rendered document. What did I do wrong?
Here is the code and I placed a screenshot of the document below. Thank you!
https://quarto.org/docs/authoring/markdown-basics.html
---
title: "Untitled"
format:
html:
page-layout: article
editor: source
---
```{r}
1+1
```
{{< pagebreak >}}
```{r}
2+2
```
{{< pagebreak >}}
```{r}
3+3
```
