about summary refs log tree commit diff stats
path: root/cmd/build/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/build/template.go')
-rw-r--r--cmd/build/template.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/build/template.go b/cmd/build/template.go
index 4f7552c..84cf57c 100644
--- a/cmd/build/template.go
+++ b/cmd/build/template.go
@@ -125,7 +125,7 @@ func layout(filename string, config config.Config, pageTitle string, pageURL str
 	doc.Find("head > link[rel=canonical]").SetAttr("href", pageURL)
 	doc.Find(".title").SetText(config.Title)
 	doc.Find("title").Add(".p-name").SetText(pageTitle)
-	doc.Find("head > style").SetHtml("\n" + string(css))
+	doc.Find("head > style").SetHtml(css)
 	doc.Find("body").setImgURL(pageURL, pageTitle)
 	nav := doc.Find("nav")
 	navLink := doc.Find("nav a")