quarto-dev / quarto-dev/quarto-cli
GT table is not correctly sized in revealjs after quarto table processing
Open
@cderv is already working on this.
Since Jan 11, 2024.
bug
pandoc
revealjs
tables
- Dominant language
- JavaScript
- Stars
- 6k
- Forks
- 458
- Avg merge
- 1d 9h
- Merged PRs (30d)
- 41
Description
---
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...
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.