Skip to content

Commit

Permalink
fix podcast content
Browse files Browse the repository at this point in the history
  • Loading branch information
codercatdev committed Dec 18, 2023
1 parent 502c68a commit e8769da
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions apps/codingcatdev/scripts/podcast-dev-to.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,14 @@ for await (const file of g) {
canonical_url: `https://codingcat.dev/${TYPE}/${fm.slug}`,
description: fm?.excerpt || '',
organization_id: '1009',
body_markdown: `Original: https://codingcat.dev/${TYPE}/${fm.slug}
{% youtube ${fm?.youtube} %}
{% spotify spotify:episode:${fm?.spotify?.split('/')?.at(-1)?.split('?')?.at(0)} %}
${content}`
body_markdown: `
Original: https://codingcat.dev/${TYPE}/${fm.slug}
{% youtube ${fm?.youtube} %}
{% spotify spotify:episode:${fm?.spotify?.split('/')?.at(-1)?.split('?')?.at(0)} %}
${content}`
}
});
console.log('addArticle result:', response.status);
Expand Down

1 comment on commit e8769da

@vercel
Copy link

@vercel vercel bot commented on e8769da Dec 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

codingcat-dev – ./apps/codingcatdev

codingcat-dev-git-main-coding-cat-dev.vercel.app
codingcat.dev
codingcat-dev-coding-cat-dev.vercel.app

Please sign in to comment.