This repo contains:
learning_materials
- A few tutorials I've written for linux first-timerspresentation framework
- Framework used for making my presentations
No such tool existed, so I made it myself
- Markdown-based (with some extra features)
- Compiles into a Reveal.js presentation
- Can embed Asciinema for animated terminal examples
- optional - create a virtual environment (
virtualenv venv
) pip install -r requirements.txt
Refer to already existing presentations in the markdown
folder,
the syntax is simple AF.
- Create a a file with your presentation in the
markdown
folder python prometheus.py -i markdown/your_presentation_here.md
It only builds the presentation once, you have to rerun the command each time
you change the .md
file
The better way (with autoreload), but requires the entr
utility
- Same as before, create a file with your presentation in the
markdown
./live_compile.sh markdown/your_presentation_here.md
The script will watch for the changes in your file and reload the presentation
each time you save the file. ctrl-c
to stop.