https://github.com/abailly/raft-for-dummies
reveal.js slideshow on Raft Consensus protocol
https://github.com/abailly/raft-for-dummies
Last synced: 11 months ago
JSON representation
reveal.js slideshow on Raft Consensus protocol
- Host: GitHub
- URL: https://github.com/abailly/raft-for-dummies
- Owner: abailly
- Created: 2014-04-15T15:41:09.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-20T20:19:48.000Z (about 12 years ago)
- Last Synced: 2025-01-06T21:45:43.682Z (over 1 year ago)
- Language: JavaScript
- Size: 3.78 MB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
To build:
Download [reveal.js](https://github.com/hakimel/reveal.js):
> wget https://github.com/hakimel/reveal.js/archive/master.zip
Use [pandoc](http://johnmacfarlane.net/pandoc/) to generate slides. `h1` tags are replaced with `h3` as their size is too large in
default style:
> pandoc --slide-level 1 --variable theme=beige -i -s -o slides.html -t revealjs slides.md && sed -i -e s/h1/h3/g slides.html
To create PDF version:
> pandoc --slide-level 1 -i -s -t beamer -o slides.pdf slides.md --latex-engine=xelatex -V colortheme:beaver