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.
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 %}