Generates a slideshow using the slides that power the html5-slides presentation.

A sample slideshow is here.
Version 0.8.1 is tagged and pushed to pypi.
This release fixes an issue in the "light" theme. The help and table of contents side bars were toggled on by default, but this has been fixed.
Version 0.8.0 is tagged and pushed to pypi. New features:
light theme (agonzalezro) (#14)s to toggleh to toggle a help sidebarMany thanks to n1k0, agonzalezro, harobed, mtrythall, and ipmb for helping to make this release possible.
Also a big thanks to Lincoln Loop for supporting and using Landslide!!
Version 0.6.0 is tagged and pushed to pypi. New features:
t to toggle a table of contents for your presentationn to toggle slide number/source file visibility2 to toggle notes in your slides (specify with the .notes macro)3 to switch to 3D display (using latest WebKit versions)easy_install or pip.python and the following modules:
jinja2pygments for code blocks syntax colorationEventually:
markdown if you use Markdown syntax for your slide contentsdocutils if you use ReStructuredText syntax for your slide contentsh1 element (eg. # My Title)--- in markdown) except at the end of md filesh1 element{lang} where {lang} is the pygment supported language identifier as the first indented line---- in RST) except at the end of RST filesslides.md or slides.rstlandslide slides.md or landslide slides.rstpresentation.htmlAs a proof of concept, you can even transform this annoying README into a fancy presentation:
$ landslide README.md && open presentation.html
Or get it as a PDF document, at least if PrinceXML is installed and available on your system:
$ landslide README.md -d readme.pdf
$ open readme.pdf
left arrow and right arrow to navigatet to toggle a table of contents for your presentation. Slide titles are linksn to toggle slide number visibilitySeveral options are available using the command line:
$ landslide/landslide
Usage: landslide [options] input.md ...
Generates fancy HTML5 or PDF slideshows from Markdown sources
Options:
-h, --help show this help message and exit
-b, --debug Will display any exception trace to stdin
-d FILE, --destination=FILE
The path to the to the destination file: .html or .pdf
extensions allowed (default: presentation.html)
-e ENCODING, --encoding=ENCODING
The encoding of your files (defaults to utf8)
-i, --embed Embed base64-encoded images in presentation
-t THEME, --theme=THEME
A theme name, or path to a landlside theme directory
-o, --direct-ouput Prints the generated HTML code to stdin; won't work
with PDF export
-q, --quiet Won't write anything to stdin (silent mode)
-v, --verbose Write informational messages to stdin (enabled by
default)
Note: PDF export requires the `prince` program: http://princexml.com/
Landslide allows to configure your presentation using a cfg configuration file, therefore easing the aggregation of source directories and the reuse of them accross presentations. Landslide configuration files use the cfg syntax. If you know ini files, you get the picture. Below is a sample configuration file:
[landslide]
theme = /path/to/my/beautiful/theme
source = 0_my_first_slides.md
a_directory
another_directory
now_a_slide.markdown
another_one.rst
destination = myWonderfulPresentation.html
Please just don't forget to declare the [landslide] section. To generate the presentation as configured, just run:
$ cd /path/to/my/presentation/sources
$ landslide config.cfg
You can use macros to enhance your presentation:
Add notes to your slides using the .notes: keyword, eg.:
# My Slide Title
.notes: These are my notes, hidden by default
My visible content goes here
You can toggle display of notes by pressing the 2 key.
Some other macros are also available by default: .fx: foo bar will add the foo and bar classes to the corresponding slide <div> element, easing styling of your presentation using CSS.
so macros are used to transform the HTML contents of your slide.
You can register your own macros by creating landslide.macro.Macro derived classes, implementing a process(content, source=None) method and returning a tuple containing the modified contents and some css classes you may be wanting to add to your slide <div> element. For example:
1 import landslide
2 class MyMacro(Macro):
3 def process(self, content, source=None):
4 return content + '<p>plop</p>', ['plopped_slide']
5
6 g = generator.Generator(source='toto.md')
7 g.register_macro(MyMacro)
8 print g.render()
This will render any slide as below:
1 <div class="slide plopped_slide">
2 <header><h2>foo</h2></header>
3 <section>
4 <p>my slide contents</p>
5 <p>plop></p>
6 </section>
7 </div>
$ landslide slides.md -d ~/MyPresentations/KeynoteKiller.html
$ landslide slides/
$ landslide slides.md -o | tidy
$ landslide slides.md -t mytheme
$ landslide slides.md -t /path/to/theme/dir
$ landslide slides.md -i
$ landslide slides.md -d PowerpointIsDead.pdf
A Landslide theme is a directory following this simple structure:
mytheme/
|-- base.html
|-- css
| |-- print.css
| `-- screen.css
`-- js
`-- slides.js
If a theme does not provide HTML and JS files, those from the default theme will be used. CSS is not optional.
The base.html must be a Jinja2 template file where you can harness the following template variables:
css: the stylesheet contents, available via two keys, print and screen, both having:path_url key storing the url to the asset file path contents key storing the asset contentsjs: the javascript contents, having:path_url key storing the url to the asset file path contents key storing the asset contentsslides: the slides list, each one having these properties:header: the slide titlecontent: the slide contentsnumber: the slide numberembed: is the current document a standalone one?num_slides: the number of slides in current presentationtoc: the Table of Contents, listing sections of the document. Each section has these properties available:title: the section titlenumber: the slide number of the sectionsub: subsections, if anycss/screen.css stylesheet bundled with the theme you are usingcss/print.css| Table of Contents | t |
|---|---|
| Source Files | s |
| Slide Numbers | n |
| Notes | 2 |
| Help | h |