commit | c05ce2b27c341a0ededee6ed0eef660eca5d26d6 | [log] [tgz] |
---|---|---|
author | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:06:16 2013 -0500 |
committer | Michael M. Tiller <michael.tiller@gmail.com> | Fri Jan 18 15:06:16 2013 -0500 |
tree | 01df92a2201566c333ae8b16f19e4a499a45fbd0 | |
parent | 655475585c62f1a1cd6dbc8af37954579fddb435 [diff] |
Using symbolic links for common elements I changed several common files in the themes directory to use symbolic links. This way, I don't have to worry about making the same changes in both themes.
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 %}