-
DescriptionI'm attempting to build a slide deck for a presentation, and I'm encountering a confusing error with Quarto 1.4-1.6 (on Ubuntu 22). This presentation is next week and I'm not going to have time to make a minimal example until afterwards. Any help would mean a lot to me. The source of the problem seems to be my includes. I have used includes before with no issue. The source is here: https://github.com/mfisher87/presentation-cng2025/tree/10aa28a69f0df8a87918c70720a07018a5a792dd If you check out the latest commit as of this writing (10aa28a69f0df8a87918c70720a07018a5a792dd) the issue should reproduce. It's reproducing in GitHub Actions on my repo as well.
The weird thing is Thanks in advance to anyone able to look at this 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
I was only able to get a successful build by removing |
Beta Was this translation helpful? Give feedback.
-
Oooo! I was able to resolve this by removing the |
Beta Was this translation helpful? Give feedback.
-
@mfisher87 this is a known issue
This is because a single .qmd document will be rendered to
When you did that, you explicitly stated that Previously, as the Hope it makes sense. By the way, I do believe that even when the issue will be fixed, I am not sure having both a revealjs output and a html output for So you probably need to understand how format merging works to configure the desired format in the right place. Hope it helps. |
Beta Was this translation helpful? Give feedback.
@mfisher87 this is a known issue
This is because a single .qmd document will be rendered to
format: html
AND toformat: revealjs
and we don't currently handle well formats that will conflict in output name. There are problem in the post processing order of each format while multiple format targets the same output file name.When you did that, you explicitly stated that
slide.qmd
should be rendered torevealjs
only, and that all other doc like https://github.com/mfisher87/presentation-cng2025/blob/10aa28a69f0df8a87918c70720a07018a5a792dd/how-you-can-join.md should be only html.Previ…