Skip to content

Commit 25753d1

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

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

feed.json.liquid

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ permalink: feed.json
2626
{% else %}
2727
"{{ site.url }}{{ collection.id | remove_first: "/index" }}/{{ collection.image }}",
2828
{% endif %}
29-
"content_markdown": {{ collection.rendered_content | jsonify }},
30-
"content_html": {{ collection.content | jsonify }}
29+
"content": {{ collection.content | jsonify }}
3130
}{% unless forloop.last == true %},{% endunless %}
3231
{% endfor %}
3332
],
@@ -43,7 +42,7 @@ permalink: feed.json
4342
"logo": {% if topic.logo == null %}
4443
null,
4544
{% else %}
46-
"{{ site.url }}{{ topic.id | remove_first: "/index" }}/{{ topic.logo }}",
45+
"https://github.com/github/explore/blob/main{{ topic.id | remove_first: "/index" }}/{{ topic.logo }}?raw=true",
4746
{% endif %}
4847
"released": {{ topic.released | jsonify }},
4948
"short_description": {{ topic.short_description | jsonify }},
@@ -59,8 +58,7 @@ permalink: feed.json
5958
"{{ alias }}"{% unless forloop.last == true %},{% endunless %}
6059
{% endfor %}
6160
],
62-
"content_markdown": {{ topic.rendered_content | jsonify }},
63-
"content_html": {{ topic.content | jsonify }}
61+
"content": {{ topic.content | jsonify }}
6462
}{% unless forloop.last == true %},{% endunless %}
6563
{% endfor %}
6664
]

0 commit comments

Comments
 (0)