Skip to content

GT table is not correctly sized in revealjs after quarto table processing #8233

@cderv

Description

@cderv
---
title: "Test"
format: revealjs
keep-md: true
---

## Toto
```{r}
library(magrittr)
library(gt)
iris %>%
  gt()
```


## Tata
```{r}
iris %>%
  gt() %>%
  cols_width(
    "Sepal.Length" ~ px(300),
    everything() ~ px(50)
  ) %>%
  as_raw_html()
```

The second table as a size problem.

Setting tab_options(quarto.disable_processing = TRUE) seems to unbreak

And using format: html also...

Metadata

Metadata

Assignees

Labels

bugSomething isn't workingpandocrevealjsIssues with the revealjs formattablesIssues with Tables including the gt integration

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions