Christophe Dervieux
Christophe Dervieux
@maelle is this only happening with the Knit button or also with `rmarkdown::render()` ? My guess is only the former right ?
Interesting so the opposite of what I was thinking. It means the IDE must do something to patch something (helpful right ? 😅 ) We'll look into that. By change,...
For reference there is currently a way to have verbatim inline expression that we documented in https://bookdown.org/yihui/rmarkdown-cookbook/verbatim-code-chunks.html#show-a-verbatim-inline-expression This would mean using ````r `` `r knitr::inline_expr("nrow(c()")` `` ```` in your document...
There could also be a pandoc inspired syntax from [inline_code_attributes](https://pandoc.org/MANUAL.html#extension-inline_code_attributes) ? ```` `r expr`{.verbatim} ```` Currently **knitr** does not skip it and the inline code part is evaluated so such...
😅 thanks for opening an issue about my comment in other thread. Yes we probably did not fix that in the right place and we should probably add in `html_document_base()`
@JrmFRL this is not supported to passe any option to `dbGetQuery`. Support should be added. Just some notes if someone wants to tackle this, if possible, by a PR: *...
Hi @AWKruijt, Thanks for your work on this feature! This sounds great! > Not sure what the next step is now? Should I initiate a PR? Yes please open a...
> Bascially all we need is a way to verify if a SQL statement is valid without executing it We could check into what **dbplyr** is doing maybe... it will...
Thanksfor the suggestion. We have some documentation and generic advices in the R Markdown Cookbook https://bookdown.org/yihui/rmarkdown-cookbook/cache.html Among them: > The most appropriate use case of caching is to save and...
Thanks @francisbarton. For reference, these options are custom options from **officer** 📦 https://github.com/davidgohel/officer/blob/0591d88127d4fa5aa6006eabe55329a1955b7bd0/R/knitr_utils.R#L127 They do not exist in **knitr** but this feature request would surely port them here.