I am struggling to get in-line chunks from both R and Python. Any ideas what I'm doing wrong?
---
title: "Untitled"
format: gfm
---
```{r}
library(reticulate)
```
```{r}
#| label: make-x-r
xr <- "This is from R"
```
```{python}
#| label: make-x-py
xpy = "This is from Python"
```
- `r xr`
- `python xpy`
This yields:
# Untitled
``` r
library(reticulate)
```
``` r
xr <- "This is from R"
```
``` python
xpy = "This is from Python"
```
- This is from R
- `python xpy`