Rayveal is an opinionated version of the awesome reveal.js. The main difference an approach to creating slides that is markdown centered with the ability to create multiple presentations in the same project.
This, plus the pre-installation of convenient plugins and libraries make it easier to create your presentations quickly using markdown. That helps me focus on writing and not on laying out presentations.
You can see the demo at rayveal.tech.
Instead of creating HTML files, you simply create one or more *.md
files in the docs/slides
folder. A server is required in order to use RayVeal properly...since the markdown files have to be loaded dynamically, so upload the contents of the docs
folder to a server.
Optionally, you can just run the presentation locally (great when you can't guarantee a network connection), There's a live preview server provided.
- Grab/Fork from repo
docs
folder has presentationdocs/slides/demo.md
subfolder has sample markdownslides/index.json
has a list of presentations (optional)
- Run
$ npm install
from your terminal - Edit
docs/slides/demo.md
or add*.md files
- Run
$ npm start
from your terminal - Generates the
docs/slides/index.json
file (index) - Creates a live reload server
Pre-installed libraries like Font Awesome will let you easily add icons to your presentation, while a lightweight version of bootstrap, which you can customize for your own needs, lets you use things like buttons, table, cards, list-groups and form styles if you need them. You can customize what's included with an npm run bootstrap-light
command.
If you want to control what gets included in the bootstrap-light.css
file, you can edit the src/bootstrap-light/scss/bootstrap.scss
file.
There are lots of great reveal.js plugins and I added the awesome menu plugin, so that you can hit the m
key and get a list of your presentations.
One of the problems I often have when doing presentation is making sure that people have the URL to the presentation as well as contact and other important information. So, I created a persistent toolbar at the bottom of every slide.
It auto-hides after 5 seconds, but you can bring it back by using the t
key. You can find it in the index.html file and put your own HTML there.
Another way in which RayVeal differs from reveal is in the way it handles fragments. I don't like to show a lot of text in my presentations, but write short bullet points that I want people to consume one at a time. Therefore, fragments are on by default, just write your normal bullet points and they will show one at a time.
Another way that Rayveal differs is that when you write code blocks by either using the `
character or ```
codeblocks, Rayveal makes those automatically have the contenteditable
attribute. I demo a lot of code, so it's nice to be able to edit my codeblocks or even anything with the code tag.
I created some additional styles that are not in bootstrap.
You can use code
blocks with different colors
<code class="code-primary">primary</code>
<code class="code-success">success</code>
<code class="code-info">info</code>
<code class="code-warning">warning</code>
<code class="code-danger">danger</code>
I'm not importing the Bootstrap JavaScript or the Bootstrap Grid, so I created my own way of doing a simple tooltip using CSS.
<a class="tooltip" href="#">`tooltips`<span>For overlay explanations</span></a> on rollover
There's also a style that I need for some of my own coursework, which lets you create lists with code samples that change color in each line. Here's the code:
- `sample`
- NUM: `one` `two` `three`
- NUM: `four` `five` `six`
- NUM: `seven` `eight` `nine`
- NUM: `ten` `eleven` `twelve`
- NUM:<br>
`thirteen` `fourteen` `fifteen`
But it's better if you look at these in the demo
Reveal.js lets you add style tags, classes and data attributes in comments, so I used these to create different slide templates. There are three right now.
<!-- .slide: data-state="title" -->
This is the title slide that appears at the beginning of the demo. Blue background, large fonts.
<!-- .slide: data-state="hasicon" -->
A page that has a title with a Font Awesome icon in it. The spacing has to be different.
<!-- .slide: data-state="circles" -->
In this page, each bullet point becomes a circle. Just a different way to help the user focus.
Take a look at the demo for more examples, I'm really excited about some of the stuff you can do with Bootstrap's card and list-group components. I'd love to add more components and other layouts in the future.