This R code:
pander::pander(list("1", "2", 3, c(1, 2)))
renders a list that looks like this in an Rmarkdown file:
and a list that looks like this in a Quarto file:
How can I prevent the second indentation level in the quarto file?
This R code:
pander::pander(list("1", "2", 3, c(1, 2)))
renders a list that looks like this in an Rmarkdown file:
and a list that looks like this in a Quarto file:
How can I prevent the second indentation level in the quarto file?


Here is way using
catandresults=asis:My guess:
pander::pander(list("1", "2", 3, c(1, 2)))results in this markdown code:which when you type this result into a quarto document works like you want. I assume that the
catandasisforces quarto to render it "correctly". I agree with Ben that it looks like a bug in quarto.