commit | fe8c9e03454ae1a00716ed963eb2b47da1b36c73 | [log] [tgz] |
---|---|---|
author | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:32:41 2013 -0500 |
committer | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:32:41 2013 -0500 |
tree | dd3e4676a557ef6e8aa751daa6ca0202da8d2f07 | |
parent | 49733cc37178dc1a96621ac13fb95efc6ad835a3 [diff] |
Documenting dependency on Python-markdown and jmpress.
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 %}