Christophe Dervieux

Results 1378 comments of Christophe Dervieux

> just to be clear, you think the result of your first code block should be: Yes > And would this would only be with format = 'qmd'? Yes I...

Thanks for giving it a try ! Can you open a PR even as draft ? This makes it more easy to compare and review. @yihui will also be able...

Not sure from which data `Distance` or `Speed` comes from to reproduce, but several comments. Instead of `for` loop with `cat()`, you should consider going all `knit_child` way, and generate...

Can you format correctly please ? https://yihui.org/issue/#please-format-your-issue-correctly Also you can try with what I shared. I believe it will make your intention works

Several examples ## directly creating text to knit as a child This is close to what you are doing, but instead, you are just generating the child content as a...

It is tricky as issue because you are missing `cat()` of raw markdow, and `print()` of plots and `kable()`, without any `results = "asis"` set is quite specific, and does...

> Actually results = 'asis' is specified by default through knitr::opts_chunk$set, Oh that is why. Ok thanks for clarification !

A smaller reprex with `knit_child()` ````markdown --- title: test output: html_document: keep_md: true --- ```{r pressure, results='asis'} plot(cars$speed, cars$dist, panel.first = grid(8, 8), pch = 0, cex = 1.2, col...

First thing, let's clarify the context here. This is **knitr** repo and **knitr** is not responsible for PPTX output. It will only produce Markdown based on the cells results. Your...

I think that fits well into **knitr**, especially if we can make the addition conditional. It seems to me that when `rlang_error` and other class are used, it means **rlang**...