-
|
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
.qmdto.ipynb.ipynband store the output in.ipynb(done bynbconvert).ipynbwith code output to.qmd.qmdto.html(done with Pandoc and filters)For PDF, the process is similar
.qmdto.ipynb.ipynband store the output in.ipynb(done bynbconvert).ipynbwith code output to.qmd.qmdto.tex(done with Pandoc and filters).texto.pdf(done with LaTeX engine)Please note that OJS is NOT …