-
I remember seeing this 1.3 pre-release announcement that Quarto would enable HTML tables as input format, affording more flexibility compared to the various markdown idioms. I wanted to test this today with this rather unwieldy table that I find really hard to edit, let alone format, in markdown: I tried the suggested HTML format, but that doesn't seem to be parsed in Quarto v1.3.353, and indeed I cannot find any mention of it in the current documentation. Was this feature removed for now? Any chance it might come back? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
Could you share a small "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
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.
```` |
Beta Was this translation helpful? Give feedback.
-
We haven't done a great job moving the documentation from the pre-rerelease descriptions to the webpages themselves, and we'll be fixing that shortly.
It hasn't been removed - can you provide an example where it doesn't work for you? It's possible that the table you're trying to write is not valid HTML. If it validates correctly here: https://validator.w3.org/ and it doesn't show up how you expect it to, then we would consider that a bug. |
Beta Was this translation helpful? Give feedback.
-
I think I'm just not understanding the syntax – even the example from the pre-release page doesn't work for me, so I'm guessing it needs to be wrapped in a container of some sort?
|
Beta Was this translation helpful? Give feedback.
On my (fixed) quarto, you'll see this: