hugo gen chromastyles
1 parent 4e52be8 commit 83cec78Copy full SHA for 83cec78
commands/gen.go
@@ -75,7 +75,9 @@ See https://xyproto.github.io/splash/docs/all.html for a preview of the availabl
75
return err
76
}
77
formatter := html.New(html.WithAllClasses(true))
78
- formatter.WriteCSS(os.Stdout, style)
+ w := os.Stdout
79
+ fmt.Fprintf(w, "/* Generated using: hugo %s */\n\n", strings.Join(os.Args[1:], " "))
80
+ formatter.WriteCSS(w, style)
81
return nil
82
},
83
withc: func(cmd *cobra.Command, r *rootCommand) {
0 commit comments