mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00:00
@@ -143,6 +143,11 @@ func Tokenize(in string) interface{} {
|
|||||||
for i, v := range first {
|
for i, v := range first {
|
||||||
index := strings.Index(v, "=")
|
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 !inQuote {
|
||||||
if index > 1 {
|
if index > 1 {
|
||||||
keys = append(keys, v[:index])
|
keys = append(keys, v[:index])
|
||||||
|
|||||||
Reference in New Issue
Block a user