Skip to content

Commit

Permalink
Removed FCP Cafe reference from RSS script
Browse files Browse the repository at this point in the history
  • Loading branch information
latenitefilms committed Aug 2, 2023
1 parent a630da0 commit 0027358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/generate-rss.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ for (const file of files) {
content = content.replace(/{{ include ".*" }}/g, '')
.replace(/\!\[([^\]]*)\]\(([^)]*)\)/g, (match, alt, src) => {
if (src.startsWith('../')) {
src = `https://fcp.cafe/${src.substring(3)}`;
src = `${SITE_URL}/${src.substring(3)}`;
}
return `<img src="${src}" alt="${alt}">`;
})
Expand Down

0 comments on commit 0027358

Please sign in to comment.