-
I would like to know how quarto converts a qmd document. For example, if I convert a qmd document with python and ojs code into a html with a pandoc filter.
Is it a correct way to process? I also want to know whether my guess is correct for a pdf file.
Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@kwangkim Thanks for the question. The conversion steps will change based on the settings. For your executable Jupyter Notebook Python with OJS, my understanding is
For PDF, the process is similar
Please note that OJS is NOT supported when rendering your document to PDF. (small edits by @cscheid for clarification, though the original answer was 99.9% right!) |
Beta Was this translation helpful? Give feedback.
@kwangkim Thanks for the question. The conversion steps will change based on the settings.
For your executable Jupyter Notebook Python with OJS, my understanding is
.qmd
to.ipynb
.ipynb
and store the output in.ipynb
(done bynbconvert
).ipynb
with code output to.qmd
.qmd
to.html
(done with Pandoc and filters)For PDF, the process is similar
.qmd
to.ipynb
.ipynb
and store the output in.ipynb
(done bynbconvert
).ipynb
with code output to.qmd
.qmd
to.tex
(done with Pandoc and filters).tex
to.pdf
(done with LaTeX engine)Please note that OJS is NOT …