Files
slides/examples/ascii_slides.md
Britton Hayes e21cc0c0b3 Allow user customization for slide themes
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>
2021-06-12 16:59:00 -04:00

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
  1. 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