Christophe Dervieux

Results 1378 comments of Christophe Dervieux

This question was also posted in Quarto repo. You can see my answer there: - https://github.com/quarto-dev/quarto-cli/discussions/12594#discussioncomment-13129416 I'll try to sum-up the main points here to help answer some questions: -...

There is known issue with Math in **gt** and Quarto - https://github.com/rstudio/gt/issues/1822 And I think it could be the same issue. > With the current dev version of gt and...

Based on what I shared in https://github.com/rstudio/gt/issues/1822#issuecomment-2391489570 I try adding `html-table-processing: none` ````markdown --- format: revealjs html-table-processing: none keep-md: true --- ```{r} library(gt) gt(mtcars[1,]) |> cols_label(mpg=md("$\\sigma$")) ``` ```` And it...

> How can we do that? this seems like the simplest option? The simplest solution seems to me to defer to quarto handling for processing markdown in HTML table when...

Merging this PR will close https://github.com/quarto-dev/quarto-web/pull/1271 too

I would advise to revise the **rmarkdown** basics about formats. `rmarkdown::render()` will only render one output format, that you can provide as an argument to the function, or using YAML...

I don't know enough on using parallel with Fork logic so that will be hard to investigate. I know that `rmarkdown::render` on parallel logic is not ideal if you don't...

> The issue seems specific to macOS; we could not reproduce it on linux. This is really interesting. @yihui do you know anything as a Mac user on this type...

I believe the handling of **knitr** ooutput for `python` cell is done by **reticulate** engine directly. This is the engine handling the knitr option, and deciding what to output for...