Inspired by the great work on reveal.js and the dislike towards JavaScript, this small project was created to provide a simple wrapper in ClojureScript to create awesome presentations.
It uses Hiccup-syntax for templating, which makes it very easy to create slides.
Start the project with make repl
and see your live
slides. Start speaker-mode by pressing s in the slides in your
browser.
Tested with AdoptOpenJDK 13.
Also Clojure's CLI Tools,
yarn and make
are necessary to
build and run the project.
Set your desired options in core.cljs. More options can be found here.
Create your slides in
slides.cljs
and add them to the list in the function all
.
Then start the development server as seen in the Setup section.
Everything in one command:
make
Or:
Download the dependency reveal.js (specified in package.json
) with:
make install
or clone the repository:
git clone git@github.com:hakimel/reveal.js.git resources/public/node_modules/reveal.js
To get an interactive development environment, run:
make repl
Figwheel opens your browser at localhost:9500. This will auto compile and send all changes to the browser without the need to reload.
Open Speaker Notes by pressing s.
You can compile the cljs-Code and put the assets together to make your presentation ready to be deployed on a webserver (e.g. on GitHub Pages). By following these steps, you can publish the presentation on a regular server, which only needs to serve HTML, CSS and JavaScript Files. This is all put into one task:
make web
Follow the steps on the terminal to find your prepared presentation.
Copyright © 2016-2019 Christian Meter and Contributors
Distributed under the MIT License version.