Generate example styles from default styles

This commit is contained in:
Tom Payne
2020-01-05 05:45:40 +01:00
committed by Christian Muehlhaeuser
parent 6b9278b445
commit bdbe6ae0c5
6 changed files with 233 additions and 175 deletions
+38
View File
@@ -0,0 +1,38 @@
package main
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"github.com/charmbracelet/glamour"
"github.com/charmbracelet/glamour/ansi"
)
func writeStyleJSON(filename string, styleConfig *ansi.StyleConfig) error {
f, err := os.Create(filename)
if err != nil {
return err
}
defer f.Close()
e := json.NewEncoder(f)
e.SetIndent("", " ")
return e.Encode(styleConfig)
}
func run() error {
for style, styleConfig := range glamour.DefaultStyles {
if err := writeStyleJSON(filepath.Join("styles", style+".json"), styleConfig); err != nil {
return err
}
}
return nil
}
func main() {
if err := run(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}