---
title: "A Multi-page HTML Document"
author: "Yihui Xie and Romain Lesur"
date: "`r Sys.Date()`"
output:
pagedown::html_paged:
toc: true
# change to true for a self-contained document, but it'll be a litte slower for Pandoc to render
self_contained: false
# uncomment this line to produce HTML and PDF in RStudio:
#knit: pagedown::chrome_print
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r}
suppressPackageStartupMessages(library(dplyr))
suppressPackageStartupMessages(library(gt))
tibble(x = 1:30, y = 1:30) %>%
gt()
```
The issue is more obvious with some templates (e.g., pagedreport::paged_grid):
Related to #162. Example:
The issue is more obvious with some templates (e.g., pagedreport::paged_grid):