Magic Reveal makes creating presentations easy and fun.
See it in action at the demo/tutorial
Use gem
to install magic_reveal:
$ gem install magic_reveal
The version numbers are the based on the versions of reveal.js. The last number is the revision specific to Magic Reveal.
- Ruby 1.9.3 or newer
- A recent version of Bundler
Magic Reveal *may* work on non-posix systems, but I make no promises. Pull Requests are welcome.
To get started:
$ magic-reveal new my-presentation
$ cd my-presentation
$ vim slides.md
Feel free to replace vim with the editor of your choice.
$ magic-reveal start
Then open your browser to http://localhost:9292
.
$ magic-reveal static
This generates a static index.html
suitable for committing to git.
Magic Reveal uses github-flavored markdown as much as practical.
If you want your source code to be in files outside your slides.md
, no problem!
To load source from example.rb
, for example, then use @@source = <filename>
as the body of the code section.
For example:
`@@source = example.rb`
This works with triple back-quote blocks and four-space indented blocks sections as well.
There is a full RSpec test suite. Make sure you write tests before you continue.
For the places where I don't have tests because I couldn't figure it out, please help!
- Generate static sites via the
magic-reveal
command line tool - A configuration file, for using plugins, etc.
(because you know it could be better)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request