-
DescriptionI have a question about the engine options for Quarto. When I create a new quarto document, the options for engine are 'knitr', 'jupyter', and 'none'. I understand that if I'm using R I should use knitr, and jupyter when using python, but what is the none option for? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
When you don't want code cell to be evaluated at all, i.e., no engine is started at all. |
Beta Was this translation helpful? Give feedback.
-
Where do you see this Here is our doc about engine binding if you want to know how it works |
Beta Was this translation helpful? Give feedback.
In Rstudio IDE context,
(None)
means do not set anything in the YAML header. Then the default Engine binding behavior from Quarto applies. Which is described in the link I shared above.Reading this part of the doc should anwser your question. If you have a R cells in a document, then quarto automatically bind to the knitr engine if nothing else is specified.