Closed jospueyo closed 4 months ago
Hmm that’s odd. I’ll take a look. I don’t use quarto but it doesn’t make sense that it wouldn’t print.
Now I checked and the same issue happens if rmarkdown (v 2.27)
is loaded, but not with knitr (v 1.47)
.
Let me know if I can help somehow.
So it looks like it works properly if you're using Rmarkdown but only fails if you directly load it using library(rmarkdown)
. Is that the same with quarto?
Edit: Ah wait nvm I see that you mentioned everything works normally until you load quarto directly. Is there a reason you need to use library(quarto)
?
To get paged printing to work in Rmarkdown I added the "paged_df"
class when printing a tidytable. You can see it in line 61 in print.R
When I remove "paged_df"
the issue goes away but now paged printing no longer works
I am not sure if this is related to #139.
The issue I found is that when
quarto
is loaded,tidytable
stops printing the objects to the console. It does not happen withdata.table
ortibble
. Creating the reprex for this issue, I also discovered thatreprex::reprex()
neither prints the tidytable to the console.Created on 2024-06-19 with reprex v2.1.0