commit | 7aff10e9b9c5758eff6769d4773696abe1b0cf8d | [log] [tgz] |
---|---|---|
author | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:19:47 2013 -0500 |
committer | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:19:47 2013 -0500 |
tree | a569ebb5bb1c7b6faf774d97e7f619e6a29f2899 | |
parent | c05ce2b27c341a0ededee6ed0eef660eca5d26d6 [diff] |
Initial attempt to include a jmpress option for new 'engine' config I've added the changes I *think* are going to be necessary to allow jmpress *or* impress to be used. I have to check this though.
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 %}