mirror of
https://github.com/maaslalani/slides.git
synced 2026-01-08 22:07:59 -05:00
Closes #1. This change allows users to add a configuration section to their slides, which allows them to specify a different theme if they would like to change the styles of the default theme. A user can add ``` --- theme: ascii --- ``` To use an ascii theme or use `theme: ./styles.json` to specify their own custom JSON theme using glamour styles. Co-authored-by: Britton Hayes <brittonhayes@users.noreply.github.com>
653 B
653 B
theme
| theme |
|---|
| ascii |
Welcome to Slides
A terminal based presentation tool
package main
import "fmt"
func main() {
fmt.Println("Written in Go!")
}
Everything is markdown
In fact this entire presentation is a markdown file
h1
h2
h3
h4
h5
h6
Markdown components
You can use everything in markdown!
- Like bulleted list
- You know the deal
- Numbered lists too
| Tables | Too |
|---|---|
| Even | Tables |
All you need to do is separate slides with triple dashes --- on a separate line,
like so:
# Slide 1
Some stuff
---
# Slide 2
Some other stuff