Skip to content

Commit

Permalink
Fix feed document: make delivery entry an object
Browse files Browse the repository at this point in the history
Delivery entry in post item should be an object.
  • Loading branch information
igwejk committed Sep 19, 2023
1 parent 9cc0c90 commit d415d99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion feed.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ permalink: feed.json
"lead": {{ post.description | jsonify }},
"content": {{ post.content | jsonify }},
"parameterized_name": {{ post.parameterized_name | jsonify }},
"date_published": "{{ post.date | date_to_xmlschema }}"
"date_published": "{{ post.date | date_to_xmlschema }}",
"delivery": {{ post.delivery | jsonify }},
}
{% unless forloop.last %},{% endunless %}{% endfor %}
]
Expand Down

0 comments on commit d415d99

Please sign in to comment.