mirror of
https://github.com/maaslalani/slides.git
synced 2026-01-10 06:48:01 -05:00
Rather than defining all of the colours ourselves, we can simply choose a theme that is supported by `chroma`.
631 B
631 B
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