Surround player name attribute with double quotes.

This commit is contained in:
Raimund Renkert 2015-03-09 15:01:47 +01:00
parent 5bf52b5de9
commit 99d4f700be

View File

@ -21,7 +21,7 @@ var geoJSONTmpl = template.Must(template.New("geojson").Parse(
"coordinates": [{{.X}}, {{.Z}}]
},
"properties": {
"name": {{.Name || html }}
"name": "{{.Name | html }}"
}
}`))