Skip to content

Commit

Permalink
Merge pull request #4059 from shaedrich/fix-liquid-urls
Browse files Browse the repository at this point in the history
Fix liquid URLs
  • Loading branch information
ahpook authored Dec 6, 2023
2 parents ccf8b17 + 944a5fd commit 7bafaa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions feed.json.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ permalink: feed.json
"logo": {% if topic.logo == null %}
null,
{% else %}
"{{ site.url | replace: "github.", "explore-feed.github." }}{{ topic.id | remove_first: "/index" }}/{{ topic.logo }}",
"{{ site.url }}{{ topic.id | remove_first: "/index" }}/{{ topic.logo }}",
{% endif %}
"released": {{ topic.released | jsonify }},
"short_description": {{ topic.short_description | jsonify }},
"url": "{{ site.url }}{{ topic.url | remove_first: "/index.html" }}",
"url": "{{ site.url | replace: "explore-feed.github.", "github." }}{{ topic.url | remove_first: "/index.html" }}",
"wikipedia_url": {{ topic.wikipedia_url | jsonify }},
"related": [
{% for related_topic in related %}
Expand Down

0 comments on commit 7bafaa2

Please sign in to comment.