-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Unparsable json in headers #1049
Comments
"name": {
"key": "value",
} has a trailing comma after |
Or for this kind of "publisher": {
"@type": "Person",
"name": "{% if site.data.authors[page.author].name %}{{ site.data.authors[page.author].name }}{% else %}{{ page.author }}{% endif %}",
{% if site.data.authors[page.author].url %}"url": "{{ site.data.authors[page.author].url }}"{% endif %}
}, do this: "publisher": {
"@type": "Person",
"name": "{% if site.data.authors[page.author].name %}{{ site.data.authors[page.author].name }}{% else %}{{ page.author }}{% endif %}"{% if site.data.authors[page.author].url %},
"url": "{{ site.data.authors[page.author].url }}"{% endif %}
}, so that the |
#1051 just might work. |
I get this: {
"@context":"https://schema.org",
"@type":"BlogPosting",
"headline": "Install Jamulus Server on a Raspberry Pi",
"publisher": {
"@type": "Person",
"name": "fredsiva"
},
"author": {
"@type": "Person",
"name": "fredsiva"
},
"datePublished": "2020-03-28T00:00:00-05:00"
} http://jamuluswebsite.drealm.info/kb/2020/03/28/Server-Rpi.html (I might contend - and I might have said before - that "publisher" should be "Jamulus Development Team", or some other representation of the jamulus.io site owners.) |
Probably a minor issue, but Google is complaining that https://jamulus.io/kb/2020/03/28/Server-Rpi.html and https://jamulus.io/it/kb/2022/08/04/Translating-po-files.html have "Error parsing an array value: missing a comma or closing bracket in an array declaration."
Looking at
_layouts/post.html
I'm not sure how to fix it though - does it need re-generating in some way?The text was updated successfully, but these errors were encountered: