Generates a slideshow using the slides that power the html5-slides presentation.
A sample slideshow is here.
Version 0.6.0 is tagged and pushed to pypi. New features:
- Navigate your slideshow using arrow keys or the space bar
- Press
tto toggle a table of contents for your presentation - Press
nto toggle slide number/source file visibility - Press
2to toggle notes in your slides (specify with the .notes macro) - Press
3to switch to 3D display (using latest WebKit versions) - ReST (Restructured Text) support. It's kind of experimental!
- Theme support. Develop your own themes!
- Macros. Easily add functionality to landslide slideshows!
- Many bug fixes
- Version 0.4.0 is tagged, and Landslide is on pypi.
- Landslide installs as a command line script if you install it via
easy_installorpip.
- Write your slide contents easily using the Markdown or ReStructuredText syntaxes
- HTML5, Web based, stand-alone document (embedded local images), fancy transitions
- PDF export (using PrinceXML if available)
python and the following modules:
jinja2pygmentsfor code blocks syntax coloration
Eventually:
markdownif you use Markdown syntax for your slide contentsdocutilsif you use ReStructuredText syntax for your slide contents
- To create a title slide, render a single
h1element (eg.# My Title) - Separate your slides with a horizontal rule (
---in markdown) - Your other slides should have a heading that renders to an
h1element - To highlight blocks of code, put !
{lang}where{lang}is the pygment supported language identifier as the first indented line
- Use headings for slide titles
- Separate your slides using an horizontal rule (
----in RST)
- Put your markdown or rst content in a file, eg
slides.mdorslides.rst - Run
landslide slides.mdorlandslide slides.rst - Enjoy your newly generated
presentation.html
As 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
- Press
left arrowandright arrowto navigate - Press
tto toggle a table of contents for your presentation. Slide titles are links - Press
nto toggle slide number visibility - Press '2' to toggle notes in your slides (specify with the .notes macro)
- Browser zooming is supported
Several 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:
!python
import landslide
class MyMacro(Macro):
def process(self, content, source=None):
return content + '<p>plop</p>', ['plopped_slide']
g = generator.Generator(source='toto.md')
g.register_macro(MyMacro)
print g.render()
This will render any slide as below:
!html
<div class="slide plopped_slide">
<header><h2>foo</h2></header>
<section>
<p>my slide contents</p>
<p>plop></p>
</section>
</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 Landlside theme is a directory following this simple structure:
mytheme/
|-- base.html
|-- css
| |-- print.css
| `-- screen.css
`-- js
`-- slides.js
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,printandscreen, both having:- a
path_urlkey storing the url to the asset file path - a
contentskey storing the asset contents
- a
js: the javascript contents, having:- a
path_urlkey storing the url to the asset file path - a
contentskey storing the asset contents
- a
slides: the slides list, each one having these properties:header: the slide titlecontent: the slide contentsnumber: the slide number
embed: 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 any
- To change HTML5 presentation styles, tweak the
css/screen.cssstylesheet bundled with the theme you are using - For PDF, modify the
css/print.css
- Adam Zapletal (adamzap@gmail.com)
- Nicolas Perriault (nperriault@gmail.com)
- Vincent Agnano (vincent.agnano@particul.es)
- Brad Cupit
- Marcin Wichary (mwichary@google.com)
- Ernest Delgado (ernestd@google.com)
- Alex Russell (slightlyoff@chromium.org)
