internal/model/tutorial.md
A terminal based presentation tool
In fact this entire presentation is a markdown file.
Press n to go to the next slide.
package main
import "fmt"
func main() {
// You can show code in slides
// Press ctrl+e to execute this code directly in slides
fmt.Println("Tada!")
}
You can use everything in markdown!
| Tables | Too |
|---|---|
| Even | Tables |
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