From 7b04c49f4af5aa1214926c714d0dc3e69d49c427 Mon Sep 17 00:00:00 2001 From: bel Date: Sun, 26 Jun 2022 21:33:25 -0600 Subject: [PATCH] change default bundle.css --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 0ff6a60..50762ba 100755 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ func main() { fs = args.NewArgSet() fs.Append(args.STRING, "p", "port to serve", "8100") fs.Append(args.BOOL, "md", "whether to render markdown as html", true) - fs.Append(args.STRING, "md-css", "css to load for md", "./public/bundle.css") + fs.Append(args.STRING, "md-css", "css to load for md", "/dev/null") fs.Append(args.STRING, "md-class", "class to wrap md", "phb") fs.Append(args.STRING, "d", "static path to serve", "./public") if err := fs.Parse(); err != nil {