-
DescriptionI am making a reveal.js presentation in quarto, and I have some slides that don't have a title. I don't want these to appear in the slide-list that is shown in the navigation window, but I can't figure out how to do it. I know that reveal.js-menu can be configured to provide titleSelector: 'h1' and hideMissingTitles: false, but I've tried including these in the yaml with no effect. I also tried setting the data-menu-title to an empty string, but when I compiled the presentation this was over-ridden and a title for the slide was generated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? The goal is to make it as easy as possible for us to recreate your problem so that we can fix it: please help us help you! Thanks. You can share a self-contained "working" (reproducible) Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four If you have multiple files (and if it is absolutely required to have multiple files), please share as a Git repository.
Additionally and if not already given, please share the output of |
Beta Was this translation helpful? Give feedback.
-
It works! Oh my you are a clever one. Thank you for the help. |
Beta Was this translation helpful? Give feedback.
The option you've set are not passed on to the Reveal.js plugin.
You did not place the options in the proper scope.
The options are for the menu plugin, so you need to tell Quarto that.
See https://quarto.org/docs/presentations/revealjs/presenting.html#navigation-menu for an example of this.