From dd26e2dc85c7c8cca685724201a555ad01677e5a Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Tue, 27 Oct 2020 08:17:19 +0800 Subject: [PATCH] Don't output a literal \n in SVG output Literal `...` strings don't parse escape characters such as \n, so it would output instead of an actual newline. --- vector_renderer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector_renderer.go b/vector_renderer.go index c9ba458..0ee13b2 100644 --- a/vector_renderer.go +++ b/vector_renderer.go @@ -247,7 +247,7 @@ type canvas struct { func (c *canvas) Start(width, height int) { c.width = width c.height = height - c.w.Write([]byte(fmt.Sprintf(`\n`, c.width, c.height))) + c.w.Write([]byte(fmt.Sprintf(``+"\n", c.width, c.height))) if c.css != "" { c.w.Write([]byte(`