decktape
decktape copied to clipboard
There should be the option to print with speaker notes
Not sure which of the supported frameworks have "Speaker Notes" (like remarkjs has).
It would be useful to be able to print
- slides + note pages
- note pages alone (numbered according to corresponding slides)
DeckTape 2.x is now responsible for the PDF creation so that should be a lot easier to implement.
For reveal.js, this can be done by appending ?showNotes=true (or ?showNotes=separate-page) to the URL used in decktape (for now), e.g.:
decktape reveal 'http://localhost:8000/?showNotes=true' /tmp/deck.pdf
Edit: ?showNotes=separate-page doesn't seem to work; it renders notes inline (per ?showNotes=true)
For posterity: You can achieve this for remark.js by appending #p1 to the slides file name. So if you want to render slides.html together with speaker notes, just pass slides.html#p1 instead to decktape.