From 61600d095116e7f45bcb17d2323d7b2348f5f5fc Mon Sep 17 00:00:00 2001 From: "Serge A. Zaitsev" Date: Sun, 30 Aug 2015 16:01:05 +0200 Subject: [PATCH] file, url and output should not be overridden by globals --- zs.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zs.go b/zs.go index a8d2c5a..a07bbdf 100644 --- a/zs.go +++ b/zs.go @@ -35,22 +35,22 @@ func md(path string, globals Vars) (Vars, string, error) { s := string(b) url := path[:len(path)-len(filepath.Ext(path))] + ".html" v := Vars{ - "file": path, - "url": url, "title": "", "description": "", "keywords": "", - "output": filepath.Join(PUBDIR, url), + } + for name, value := range globals { + v[name] = value } if _, err := os.Stat(filepath.Join(ZSDIR, "layout.amber")); err == nil { v["layout"] = "layout.amber" } else { v["layout"] = "layout.html" } + v["file"] = path + v["url"] = url + v["output"] = filepath.Join(PUBDIR, url) - for name, value := range globals { - v[name] = value - } if strings.Index(s, "\n\n") == -1 { return v, s, nil }