Skip to content
Discussion options

You must be logged in to vote

Hi @maxdrohde,

Thanks for your contribution.

Are there any plans to standardize this syntax?

Quarto syntax is standardize but knitr and jupyter work different and, unfortunately, you need to tailor your document to the computation engine that you will use.

Long Explanation

knitr supports more than one language per document. For example,

```{r}
1 + 1
```

Foo

```{bash}
echo Awesome
```

A list of all the languages supported by knitr is available at https://bookdown.org/yihui/rmarkdown-cookbook/other-languages.html.

Jupyter only support one language per document. For example,

```{python}
1 + 1
```

Foo

```{bash}
echo Awesome
```

is a valid Quarto document but it is a invalid Jupyter no…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@maxdrohde
Comment options

Answer selected by mcanouil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants