Write slideshows in markdown and export as self-contained html pages.
This plugin provides a :RemarkPreview command to generate html.
The html imports remark.js which does all the hard work of displaying a slideshow featuring dual displays and presenter mode with notes.
If vim-gogo is installed, :RemarkPreview launches the html in your browser. Otherwise, the file path is on your clipboard.
vim-remarkjs also provides an ultisnips snippet slide to create a slide.
Remark.js uses slightly augmented markdown for each slide.
Separate slides with ---:
# Working with remarkjs
* Use normal markdown.
* End slides with ---
???
Presenter notes go here.
---
# This slide contains code
```vim
function add(a,b)
return a:a + a:b
endf
```
Vim requires an a: prefix when using arguments.
---