An open API service indexing awesome lists of open source software.

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

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