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.
| Plugin | Description |
|---|---|
| notes | Present per-slide notes in a separate browser window. |
| zoom | Zoom in and out of selected content with Alt+Click. |
| search | Find a text string anywhere in the slides and show the next occurrence to the user. |
| chalkboard | Include 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---