-
When using R Markdown, I can convert the following minimal working example
and I will get With Quarto, the following similar minimal working example
raises the following error
R Markdown was able to handle shell scripts using
produces |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
It's using the Jupyter engine by default b/c there are no R code cells. Just add |
Beta Was this translation helpful? Give feedback.
-
@jjallaire Thanks for the reply. Add
How do I define the |
Beta Was this translation helpful? Give feedback.
-
Yes, this also happened to me... I was adding a I then added I was also surprised that there doesn't seem to be some kind of command line flag to choose between the two engines. I would have liked something like Great tool, anyway! But this part is a bit intransparent. |
Beta Was this translation helpful? Give feedback.
It's using the Jupyter engine by default b/c there are no R code cells. Just add
engine: knitr
to the front-matter and it will work as you expect.