commit | 49733cc37178dc1a96621ac13fb95efc6ad835a3 | [log] [tgz] |
---|---|---|
author | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:20:25 2013 -0500 |
committer | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:20:25 2013 -0500 |
tree | b96e3d3e51ba077cf24737968565e1824d7970c9 | |
parent | 7aff10e9b9c5758eff6769d4773696abe1b0cf8d [diff] |
More files for jmpress support I forgot to commit these in the previous commit.
0.2.1
pip install weakpoint
a static slideshow generator
The recommended way to install WeakPoint is to use pip:
$ pip install weakpoint
$ weakpoint init ~/my-file
The default theme is "light" and you can specify it with "-t" option:
$ weakpoint init ~/my-file -t dark
~/my-file/slides.md
and write your slides in Markdown~/my-file/config.yaml
to config your slides$ weakpoint gen
That's all! Now your slideshow is in ~/my-file/index.html
.
You can release it like static web pages.
The technologies behind WeakPoint:
WeakPoint uses Jinja2 as a templete engine.
You can get the content of slides by writing:
{% for slide in slides %} <div class="content">{{ slide.content }}</div> {% endfor %}