fix: formatting
This commit is contained in:
parent
305ca8d7e6
commit
8d7d253913
2 changed files with 3 additions and 2 deletions
|
@ -115,11 +115,11 @@ export default {
|
||||||
// set the entry url
|
// set the entry url
|
||||||
if (entry.url?.includes('http')) url = entry.url
|
if (entry.url?.includes('http')) url = entry.url
|
||||||
if (!entry.url?.includes('http')) url = new URL(entry.url, BASE_URL).toString()
|
if (!entry.url?.includes('http')) url = new URL(entry.url, BASE_URL).toString()
|
||||||
if (entry?.data?.link) url = entry.data.link
|
if (entry?.link) url = entry.link
|
||||||
|
|
||||||
// set the entry excerpt
|
// set the entry excerpt
|
||||||
if (entry.description) excerpt = entry.description // general case
|
if (entry.description) excerpt = entry.description // general case
|
||||||
if (entry.type === 'book' || entry.type === 'movie') excerpt = `${entry.description}<br/><br/>` // books
|
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}<br/><br/>` // books
|
||||||
|
|
||||||
// send full post content to rss
|
// send full post content to rss
|
||||||
if (entry?.url?.includes('/posts/') && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, {
|
if (entry?.url?.includes('/posts/') && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, {
|
||||||
|
|
|
@ -41,6 +41,7 @@ const fetchAllLinks = async () => {
|
||||||
|
|
||||||
for (const link of data) {
|
for (const link of data) {
|
||||||
link.tags = await fetchTagsForLink(link.id)
|
link.tags = await fetchTagsForLink(link.id)
|
||||||
|
link.type = 'link'
|
||||||
}
|
}
|
||||||
|
|
||||||
links = links.concat(data)
|
links = links.concat(data)
|
||||||
|
|
Reference in a new issue