8.8 reveal.js plugins

You can enable various reveal.js plugins using thereveal_plugins option. Plugins currently supported plugins are listed in Table8.1.

TABLE 8.1: The currently supported reveal.js plugins.
PluginDescription
notesPresent per-slide notes in a separate browser window.
zoomZoom in and out of selected content with Alt+Click.
searchFind a text string anywhere in the slides and show the next occurrence to the user.
chalkboardInclude handwritten notes within a presentation.

Note that the use of plugins requires that theself_contained option be set tofalse. For example, this presentation includes both the “notes” and “search” plugins:

---title:"Habits"output:  revealjs::revealjs_presentation:self_contained:falsereveal_plugins:["notes","search"]---

You can specify additional options for thechalkboard plugin usingreveal_options. For example:

---title:"Habits"output:  revealjs::revealjs_presentation:self_contained:falsereveal_plugins:["chalkboard"]reveal_options:chalkboard:theme: whiteboardtoggleNotesButton:false---