I am writing a learnr tutorial, and I need to suppress knitr's paged printing. Exercise chunks seem to ignore paged.print = FALSE. Is there another way to suppress paged printing? Reprex below:
---
title: "reprex of paged printing issue"
output: learnr::tutorial
runtime: shiny_prerendered
---
```{r, include = FALSE}
library(learnr)
```
```{r, paged.print = FALSE}
head(mtcars)
```
```{r reprex, exercise = TRUE, paged.print = FALSE, exercise.lines = 1}
head(mtcars)
```