-
DescriptionQuarto: How it Works - This seems clear when getting started. My next questions were: What does these In real life, the CLI says: $ quarto render hello-quarto.qmd
Starting python3 kernel...Done
Executing 'hello-quarto.ipynb'
Cell 1/3...Done
Cell 2/3...Done
Cell 3/3...Done
pandoc
to: html
output-file: hello-quarto.html
...
Output created: hello-quarto.html and $ quarto render hello-jupyter.ipynb
pandoc
to: html
output-file: hello-jupyter.html
...
Output created: hello-jupyter.html So the actual flow look more like UPDATE: Inserted flowchart LR
ipynb[".ipynb<br/>(executed)"]
qmd[".qmd"]
iptmp[".ipynb<br/>(intermediate)"]
md[".md<br/>(intermediate)"]
pandoc(pandoc)
ipynb -- convert --> md
qmd -- quarto convert -->iptmp
iptmp -- Jupyter exec-->iptmp
iptmp -- convert --> md
md --> pandoc
pandoc --> .html
pandoc --> .docx
pandoc --> .pdf
What am I getting wrong? Is there a markdown at all? |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Aug 22, 2023
Replies: 1 comment 1 reply
-
For short Pandoc reads from markdown. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
th0ger
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For short Pandoc reads from markdown.
There are
keep-*
options to keep the intermediate files, see https://quarto.org/docs/computations/execution-options.html#intermediates.