Presenter notes for slides plugin

Would nice to have something like presenter notes
(slides that do not display during presentation on main screen), this is really nice implemented in deckset by using special symbol at the begining of the slide

https://docs.decksetapp.com/English.lproj/Presenting/presenter-notes.html

(The rehearsal mode or dual screen different picture display could come later, but allowing user to hide specific slide should not be hard to implement)

8 Likes

Yes please I just mentioned this on discord and linked to decksetapp

Since Obsidian uses reveal.js, this should theoretically be possible by using Note: or Notes: in a slide, followed by the presenter notes.

## Slide 1

Some text.

Notes:
Here are the invisible speaker notes.

Unfortunately, this doesn’t currently work, but could be easily enabled.

5 Likes

be great if this could be addressed

Workaround using callouts:

Add speaker notes in the callout [!note]

> [!note]
> Speaker notes here

Add css snippet to hide the note callout

.slides-container .callout[data-callout="note"] {
  display: none;
}
1 Like