Hi!
While checking #162 , it seems like the issue is not resolved (using latest pagedown 0.23.1) yet.
Using the same code snippet as in the original issue:
---
title: "Test"
output:
pagedown::html_paged
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(tidyverse)
library(gt)
```
```{r}
iris %>%
filter(Species == "setosa") %>%
select(Species, Sepal.Length) %>%
head(10) %>%
gt()
iris %>%
filter(Species == "setosa") %>%
select(Species, Sepal.Length) %>%
head(20) %>%
gt()
iris %>%
filter(Species == "setosa") %>%
head(20) %>%
gt()
```
(screenshot from Chrome)
The thing is, I can find the additional Handler in the output file. I tried adding it as an external script, but it does not seem to fix the issue.
Did I miss something here?