Skip to content

Commit e0eb067

Browse files
authored
Update feed.json.liquid
Signed-off-by: Justin Kenyon <kenyonj@github.com>
1 parent b5fdb17 commit e0eb067

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

feed.json.liquid

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ permalink: feed.json
2626
{% else %}
2727
"{{ site.url }}{{ collection.id | remove_first: "/index" }}/{{ collection.image }}",
2828
{% endif %}
29-
"content": {{ collection.content | jsonify }}
29+
"content_markdown": {{ collection.rendered_content | jsonify }},
30+
"content_html": {{ collection.content | jsonify }}
3031
}{% unless forloop.last == true %},{% endunless %}
3132
{% endfor %}
3233
],
@@ -58,7 +59,8 @@ permalink: feed.json
5859
"{{ alias }}"{% unless forloop.last == true %},{% endunless %}
5960
{% endfor %}
6061
],
61-
"content": {{ topic.content | jsonify }}
62+
"content_markdown": {{ topic.rendered_content | jsonify }},
63+
"content_html": {{ topic.content | jsonify }}
6264
}{% unless forloop.last == true %},{% endunless %}
6365
{% endfor %}
6466
]

0 commit comments

Comments
 (0)