-
Hi! Here is a minimal example of my current file:
(Didn't know how to excape the backticks, sorry...edit: thanks, edited it) This works. When I, however, add inline code after having rendered the file:
I get the following error
Adding a chunk instead of inline code works, though. Is there anything mangled up on my side? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
It works just fine for me without and with the inline R code with knitr 1.42 and Quarto 1.2.335. Your need more backticks around (I am using a block with five
PS: why |
Beta Was this translation helpful? Give feedback.
It works just fine for me without and with the inline R code with knitr 1.42 and Quarto 1.2.335.
Cache is for variables not packages loading, so you need to be sure calls to
library
& co are not cached.Your need more backticks around (I am using a block with five
`
):PS: why
some_data %>% .[1,1]
? Even for a demo about the issue of not having the function, it should never be written, in my opinion.