Project

prezio

0.0
No commit activity in last 3 years
No release in over 3 years
HTML5 presentation generator
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

 Project Readme

Prezio

A tool to generate HTML5/CSS slideshows.

Uses DZSlides HTML template and pygments.rb for syntax highlighting.

Installation

Install the gem using:

$ gem install prezio

Usage

Prezio converts simple html files into presentations.

The HTML file should look like this:

<title>The Title Of Your Presentation</title>

<!-- One section is one slide -->
<section>
  <h1>My Presentation</h1>
  <footer>by John Doe</footer>
</section>

<section>
  <!-- Any HTML -->
  <p>Some random text</p>
</section>

<section>
  <!-- This will be highlighted -->
  <code lang="ruby">
  def greet(name)
    println "Hello, #{name}!"
  end
  </code>
</section>

Convert the template to presentation using the following command:

$ prezio convert template.html presentation.html

While you are developing the presentation, it might be useful to run prezio in preview mode:

$ prezio preview template.html