-
Notifications
You must be signed in to change notification settings - Fork 389
Closed as not planned
Labels
needs-reproIssues that are blocked until reporter provides an adequate reproductionIssues that are blocked until reporter provides an adequate reproductiontablesIssues with Tables including the gt integrationIssues with Tables including the gt integration
Milestone
Description
Hello,
There is a bug.
In my quarto book file 03-tidy_data.qmd
the code block is
#| label: tbl-birth
#| tbl-cap: "Birth table"
load("dataset/births.rda")
births_quarto.yml settings
format:
html:
theme: cosmo
df-print: paged@tbl-birth
when I render the book, there is a warning
WARNING: 03-tidy_data.html: Unable to resolve crossref @tbl-birth
Watching files for changes
The crossref is available when I change the code block using kable(), but it's not paged
#| label: tbl-birth
#| tbl-cap: "Birth table"
births <- import("dataset/births.rda")
knitr::kable(births)I want both of crossref and paged available.
Metadata
Metadata
Assignees
Labels
needs-reproIssues that are blocked until reporter provides an adequate reproductionIssues that are blocked until reporter provides an adequate reproductiontablesIssues with Tables including the gt integrationIssues with Tables including the gt integration