mCider is markdown converter for slideshow.

mcider

Installation

$ pip install mcider

or

$ easy_install mcider

from source

$ git clone https://github.com/ogom/python-mcider.git
$ cd python-mcider
$ make install

Usage

Initializes

$ mcider ./slide.md

Browse the documentation.

Examples

Base Markdown

I/O 2012 slide example
======================

----

### Simple slide with header and text
Here is the text of hgroup.

This is a slide with just text. This is a slide with just text.

Converted HTML

<slide>
  <hgroup>
    <h1>
      I/O 2012 slide example
    </h1>
  </hgroup>
</slide>

<slide>
  <hgroup>
    <h3>
      Simple slide with header and text
    </h3>
    <p>
      Here is the text of hgroup.
    </p>
  </hgroup>
  <article class="none">
    <p>
      This is a slide with just text. This is a slide with just text.<br />
    </p>
  </article>
</slide>

Themes

Tests

$ make test

Build Status

Licence