A slideshow application in C made for fun and practice. It's incomplete. Use at your own risk.
Inspired by Jonathan Blow's video series
User creates some sort of file representing a slideshow (.md for now). It is split into slides. User can navigate the slideshow in a gui.
- reads a .md file
- splits the file into slides (delimiter: "---')
- basic display via stdout
- user controls in stdout
- cli args handing for --file_path
- SDL2 gui
- file browser
- customize each slide
- customize slideshow with template
# build with build.sh
./build.sh
# run program in demo mode with SDL2 gui (WIP)
./main --demo
# run program in demo mode with stdout display
./main --demo --stdout
# run program and pass file_path with stdout display
./main --file_path="./demos/show1.md" --stdout