Reveal.js Web presentation served with jekyll. Find all the reveal.js documentation the default plugins are already package in reveal jekyll. If you have any request, problems please open an issue. Feel free to implement any change and open through pull requests. 😉
Make sure to install bundle which will ease the installation of jekyll:
gem install bundle
bundle install
Run the presentation ()it zill be one localhost:4000 using
bundle exec jekyll serve
Take a look at the example,
In index.html use the layout: raw and then you can create your slides directly in the file using markdown:
___: Makes a basement slide---: Makes the next slideYour index.html could look like:
---
layout: raw
---
## First slide
---
## Second slide
___
Second slide's basement
---
## Third slide
Take a look at the example slides and basements,
In index.html use the layout: presentation. It will use the _slides and _basements folder to create the presentation.
Use the _slides folder to create a file per slide in markdown.
---
background: ... # Optional to put an image or a color as the background
video: "http://video-link.mp4" # Optional to put a video as the background
transition: slide # Optional change the transition type for this slide
---
Slide content in markdown
Don't forget to add the two
---.
To order the presentation you can do something like 01-First-slide-title.md, 02-Second-slide-title.md.
Basement slides can be put in the _basements folder.
The Basement slides will be accessible using the down arrow when on a particular slide. They are connected by the slide attribute which is the filename of the slide.
They are the sub sections of your presentation:
---
slide: slide-title
---
Content of the Basement slide in markdown
e.g:
02-slide.md02-1-basement.md should have the attribute slide: 02-slideConfigure Reveal.js in teh _config.yml:
reveal:
transition: "slide" # none/fade/slide/convex/concave/zoom
theme: "black" # beige/blood/league/moon/night/serif/simple/sky/solarized/white
You can set globally the transitions and theme of your presentation.
To export the presentation use ?print-pdf at the end of the url to be able to save the page as PDF:
<url>:<port>/<base url>/?print-pdf
Try it at .../Reveal-Jekyll/?print-pdf
There is a Dockerfile available, check it out to see how to use the theme in a Docker.
Basically you need 4 things to make it work as a gem:
gem 'reveal-jekyll' (specify the version with , '~> 0.0.2')index.html which is the entrypoint of your jekyll site and presentation (with explained above configuration)_config.yml which defines your theme configuration.And that's it you'd be good to roll!
Reveal Jekyll MIT licensed
Copyright (c) 2019-present Sylhare \o/
Reveal.js MIT licensed
Copyright (C) 2011-present Hakim El Hattab, http://hakim.se
Jekyll MIT licensed
Copyright (c) 2008-present Tom Preston-Werner and Jekyll contributors