mirror of
https://github.com/maaslalani/slides.git
synced 2026-01-07 21:43:58 -05:00
898 B
898 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
| Tables | Too |
|---|---|
| Even | Tables |
Graphs
digraph {
rankdir = LR;
a -> b;
b -> c;
}
┌───┐ ┌───┐ ┌───┐
│ a │ ──▶ │ b │ ──▶ │ c │
└───┘ └───┘ └───┘
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