epub with gt tables - forced single column output #8643
Replies: 2 comments
-
If you could edit and format your example to make it look like the one below, that would be great. See https://quarto.org/bug-reports.html#small-is-beautiful-aim-for-a-single-document-with-10-lines. ````qmd
---
title: "Reproducible Quarto Document"
format: html
engine: knitr
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```

The end.
```` I cannot reproduce: |
Beta Was this translation helpful? Give feedback.
0 replies
-
Edited. On further investigation though, this appears to be a problem specific to SumatraPDF software (which is a multiformat reader despite the name). Calibre E-reader displays the reprex correctly. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Quarto 1.5.8, Windows 10, gt 0.10.1. Project type 'book'.
When rendering a
gt
table in epub format, all the table data is being coerced into a single column, so e.g. for the following codeI get
Do I need to add something to the yaml, or are
gt
and ePub just not really ready to work together yet?Beta Was this translation helpful? Give feedback.
All reactions