Skip to content

Issue "Multipages tables not supported" does not seem to be solved? #342

@JosephBARBIERDARNAL

Description

@JosephBARBIERDARNAL

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)

Image

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions