Convert .qmd
to .ipynb
#12986
Answered
by
mcanouil
JosiahParry
asked this question in
Q&A
-
DescriptionRelated: #9463 I have a number of .qmd files that I want to programmatically convert to executable .ipynb (not rendered HTML) using the Ark kernel. Is quarto capable of doing this conversion for us? |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Jun 26, 2025
Replies: 1 comment 2 replies
-
Assuming you provide the kernel information in your Quarto document, ---
title: "Reproducible Quarto Document"
format: html
engine: jupyter
jupyter: ark
---
```{r}
x <- c(1, 2, 3, 4, 5)
y <- c(1, 4, 9, 16, 25)
plot(x, y)
```
```{r}
#| output: asis
cat("This is a **markdown** document.")
``` |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Even when setting the full spec, you will still need the kernel to be installed and in VSCode (not tested on Positron but likely to be the same), you still have to manually select the kernel (same thing happens with any Jupyter notebooks).
Setup: