fix: missing type prevented markup from being parsed properly for all feed
This commit is contained in:
parent
51dd4db062
commit
4e49d0faae
4 changed files with 6 additions and 7 deletions
|
@ -98,7 +98,8 @@ export const processContent = (collection) => {
|
||||||
|
|
||||||
const content = {
|
const content = {
|
||||||
url: `${BASE_URL}${item['url']}`,
|
url: `${BASE_URL}${item['url']}`,
|
||||||
title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`
|
title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`,
|
||||||
|
type: item['type']
|
||||||
}
|
}
|
||||||
|
|
||||||
// set url for link posts
|
// set url for link posts
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { URL } from 'url'
|
||||||
import markdownIt from 'markdown-it'
|
import markdownIt from 'markdown-it'
|
||||||
import markdownItAnchor from 'markdown-it-anchor'
|
import markdownItAnchor from 'markdown-it-anchor'
|
||||||
import markdownItFootnote from 'markdown-it-footnote'
|
import markdownItFootnote from 'markdown-it-footnote'
|
||||||
import sanitizeHtml from 'sanitize-html';
|
import sanitizeHtml from 'sanitize-html'
|
||||||
|
|
||||||
import { shuffleArray, sanitizeMediaString } from '../utilities/index.js'
|
import { shuffleArray, sanitizeMediaString } from '../utilities/index.js'
|
||||||
|
|
||||||
|
@ -143,9 +143,7 @@ export default {
|
||||||
if (entry?.['slug'] && entry['content']) excerpt = sanitizeHtml(`${md.render(entry['content'])}${feedNote}`, {
|
if (entry?.['slug'] && entry['content']) excerpt = sanitizeHtml(`${md.render(entry['content'])}${feedNote}`, {
|
||||||
disallowedTagsMode: 'completelyDiscard'
|
disallowedTagsMode: 'completelyDiscard'
|
||||||
})
|
})
|
||||||
|
|
||||||
if (entry['backdrop']) image = entry['backdrop']
|
if (entry['backdrop']) image = entry['backdrop']
|
||||||
|
|
||||||
if (entry) posts.push({
|
if (entry) posts.push({
|
||||||
title: title.trim(),
|
title: title.trim(),
|
||||||
url,
|
url,
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.5.1",
|
"version": "22.5.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.5.1",
|
"version": "22.5.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.5.1",
|
"version": "22.5.2",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue