Can I use Quarto Live even without live code chunks? #12284
Unanswered
bensoltoff
asked this question in
Q&A
Replies: 2 comments
-
Why wouldn't you be able to use this custom format regardless of the content? Note that the live extension is not developed nor maintained by the Quarto team. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I would expect this to work, and it seems to be the right solution. If not probably something to report at https://github.com/r-wasm/quarto-live |
Beta Was this translation helpful? Give feedback.
0 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.
-
Description
I am currently dealing with a problem similar to #10544 but instead the output format is
revealjs
. I have a directory of Quarto documents, the majority of which areformat: revealjs
. I use_metadata.yml
to set custom formatting for all of them.Some of the slides have interactive code chunks embedded using Quarto Live, so the output format is
format: live-revealjs
. But if I try to set the same formatting options in_metadata.yml
likeI get the same error as in #10544. I can work around this by setting something like
in the
live-revealjs
documents, but I would rather not have to since it makes it harder to update the revealjs settings in the future.As a workaround, I was thinking of switching all the Quarto documents to
format: live-revealjs
whether or not they actually havewebr
code chunks. Then_metadata.yml
only defines settings forlive-revealjs
and all the documents inherit them. Has anyone tried this? Does it change the rendered slides in any meaningful way usingrevealjs
vslive-revealjs
if you don't have interactive code chunks?Beta Was this translation helpful? Give feedback.
All reactions