https://github.com/brianyu28/vitality
A command-line tool for generating dynamic and interactive presentations from text-based configuration files.
https://github.com/brianyu28/vitality
education presentation-tools
Last synced: about 1 year ago
JSON representation
A command-line tool for generating dynamic and interactive presentations from text-based configuration files.
- Host: GitHub
- URL: https://github.com/brianyu28/vitality
- Owner: brianyu28
- License: gpl-3.0
- Created: 2019-08-15T03:11:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-24T21:39:01.000Z (almost 7 years ago)
- Last Synced: 2025-04-08T00:04:26.373Z (about 1 year ago)
- Topics: education, presentation-tools
- Language: JavaScript
- Homepage:
- Size: 187 KB
- Stars: 18
- Watchers: 6
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Vitality
**This tool is currently in active development. The API may change at any time, and many features are still in progress.**
Vitality is a tool for generated dynamic and interactive presentation slides from a text-based configuration file.
Vitality uses a YAML configuration file to define a presentation. A sample presentation might look like the below:
```yaml
title: "My Presentation"
defaults:
background_color: white
color: black
slides:
- type: title
title: My Presentation
subtitle: August 2019
- First Section
- type: bullets
title: Agenda
bullets:
- First bullet here.
- Another bullet goes here.
- Here's some more text.
- Fourth bullet.
- Next Section
```
Once installed, Vitality can be run as:
```
vitality config.yml -o presentation.html
```
Open up `presentation.html` to view the resulting presentation! The right and left arrow keys can be used to move forward and backwards through the slides, and the `z` key will return the presenter to the beginning of the presentation.