Replies: 1 comment 6 replies
-
Take a .qmd file you're interested in and add |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am a longtime Pandoc user, and over time I have assembled for myself a semi-elaborate setup of Pandoc scripts and defaults files. They are fine-tuned to my (quite opinionated) opinions on how my documents should be rendered.
So far I use this to produce static (non-computational) documents. I would now like to integrate computational elements (make my texts notebooks), especially in Python and R, and looked for suitable preprocessing tools. Quarto seems to be close to what I need.
The idea would be:
[Markdown with executable code] → preprocessing → [Markdown with code output] → my Pandoc setup → [final document]
In R Markdown terms, I'm looking for something like
knitr
, not likerender
.Or put differently, I'd like to get the Markdown which Quarto feeds into Pandoc.
I tried to achieve that by using
quarto render ... --to markdown
, and it is close, but not quite there:I've also found
quarto render ... --debug
, which leaves the Markdown which Quarto feeds into Pandoc behind, but it feels strange to use a debug option for something not debugging-related; and it still performs the Pandoc call which is unnecessary for me.Is there a way to achieve what I want?
Beta Was this translation helpful? Give feedback.
All reactions