hello im facing a problem in my shema.html file when i test my website in google structured data i get this error cancelJSON-LD Missing ':' after object member name.
you can find my shema.html file here https://github.com/SamHamou/Arafeed/blob/master/themes/Feed/layouts/partials/site_schema.html
Can you show us an example of the actual schema generated by that code?
Wrap the values in quotation marks.
Line 2:2806. Uh, weird. The <script> block simply ends with "image", not even the : is rendered.
You also need to wrap the image URLs in quotation marks.
https://github.com/SamHamou/Arafeed/blob/master/themes/Feed/layouts/partials/site_schema.html#L59
Change this:
"image": {{ if .Params.images }}[{{ range $i, $e := .Params.images }}{{ if $i }}, {{ end }}{{ $e | absURL }}{{ end }}]{{ else}}{{.Site.Params.logo | absURL }}{{ end }},
To this:
"image": {{ if .Params.images }}[{{ range $i, $e := .Params.images }}{{ if $i }}, {{ end }}"{{ $e | absURL }}"{{ end }}]{{ else}}"{{.Site.Params.logo | absURL }}"{{ end }},
thank you this has fixed the problem