From 82fdfa2c722cc89d47ffba8fa3d4bbef48c24c04 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Thu, 20 Feb 2014 00:02:08 -0800 Subject: [PATCH] Warn about bad shortcode parameters (and don't crash) closes #193 --- hugolib/shortcode.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go index cecb1e03..b71fdb42 100644 --- a/hugolib/shortcode.go +++ b/hugolib/shortcode.go @@ -143,6 +143,11 @@ func Tokenize(in string) interface{} { for i, v := range first { index := strings.Index(v, "=") + if index < 0 { + fmt.Printf("Shortcode parameters must be key=value pairs (no spaces) (saw '%s')\n", v) + continue + } + if !inQuote { if index > 1 { keys = append(keys, v[:index]) -- 2.30.2