-
I'm playing with using the quarto CLI and output to stdout. At this moment I can:
Is there an option to supress printing the metadata (the PS. I'm test-driving couple of things and plan to post some more questions. I'm assuming Discussions are better than Issues for that. Let me know if not. Edit: I'm running
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
I think the easiest solution for now is to use |
Beta Was this translation helpful? Give feedback.
-
The printing of the metadata should be to stderr rather than stdout, could you just redirect stderr? |
Beta Was this translation helpful? Give feedback.
-
I tested this and it does prevent printing of the extra output: quarto render test.qmd -t plain -o - 2>/dev/null Further, this also dropped the extra output and did indeed write the document to stdout: quarto render test.qmd -t plain -o - --quiet |
Beta Was this translation helpful? Give feedback.
I tested this and it does prevent printing of the extra output:
quarto render test.qmd -t plain -o - 2>/dev/null
Further, this also dropped the extra output and did indeed write the document to stdout: