chore: update link ids
This commit is contained in:
parent
fe186b118c
commit
32065ea071
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ module.exports = async function () {
|
|||
? new Date(link['published_date'])
|
||||
: new Date(link['created_at']),
|
||||
summary: link['summary'],
|
||||
id: link['id'],
|
||||
id: btoa(link['source_url']),
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ permalink: '/links.json'
|
|||
"feed_url": "https://coryd.dev/links.json",
|
||||
"items": [{% for link in links %}
|
||||
{
|
||||
"id": "{{ link.url | stripUtm | encodeAmp }}",
|
||||
"id": "{{ link.id }}",
|
||||
"title": "{{ link.title | escape }}",
|
||||
"url": "{{ link.url | stripUtm | encodeAmp }}",
|
||||
"content_text": "{{ link.summary | escape }}",
|
||||
|
|
Reference in a new issue