Gopress will enable you to build exciting and modern presentations using impress.js by doing the thing that feels the most natural to us developers: coding.
Creating the content is as natural as writing markdown files, building a presentable version of your presentation is done by using a CLI. Since everything is stored in code, you can even use version control to manage your presentations!
- Start by creating a directory for your presentations:
mkdir -p my-awesome-slides && cd my-awsome-slides
. - (optional) Enable source control:
git init
. - Create your first presentation:
gopress init gopress-101
. - Start writing your content using GitHub-Flavored markdown inside
gopress-101/slides.md
. - Build your presentation and open it in your default browser:
gopress present gopress-101
.
wip