mirror of
https://github.com/maaslalani/slides.git
synced 2026-01-10 06:48:01 -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>
15 lines
354 B
Modula-2
15 lines
354 B
Modula-2
module github.com/maaslalani/slides
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/adrg/frontmatter v0.2.0
|
|
github.com/charmbracelet/bubbles v0.8.0
|
|
github.com/charmbracelet/bubbletea v0.14.0
|
|
github.com/charmbracelet/glamour v0.3.0
|
|
github.com/charmbracelet/lipgloss v0.2.1
|
|
github.com/spf13/cobra v1.1.3
|
|
github.com/stretchr/testify v1.7.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|