-
DescriptionHow to export results from a quarto project into a stand-alone quarto blog? I have a couple of projects with quarto content, as well as a quarto blog:
The projects are stand-alone. They have their own environments and dependencies; Still I like to write about the projects in the blog, and include some code, results, figures and references. Is there a workflow for that? Quarto can render content to targets like pdf, html, and even mardown to be included in a hugo blog. I was thinking something like:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
You'll have to come up yourself with a workflow to make that work based on what you want/need. |
Beta Was this translation helpful? Give feedback.
-
Workflow "publishing from project to blog"ProblemWhile working on a stand-alone project, I want to publish a post to my quarto blog from the project. SolutionKeep all processing in the context of the project, including
Step 1 - Render post in the project
Step 2 - Render the blog
Possible bugOn my setup, Quarto executable blocks are not converted to markdown code blocks when I run
Removing the |
Beta Was this translation helpful? Give feedback.
Workflow "publishing from project to blog"
Problem
While working on a stand-alone project, I want to publish a post to my quarto blog from the project.
I do not want to make the project a dependency of the blog.
Solution
Keep all processing in the context of the project, including
Step 1 - Render post in the project
Step 2 - Render the blog
Possible bug
On my setup, Quarto executable blocks are not converted to markdown code blocks when I run
Removing the
--output-dir
option solved this.