diff --git a/config/filters/index.js b/config/filters/index.js index 6125345b..dce21886 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -1,7 +1,9 @@ import { DateTime } from 'luxon' import { URL } from 'url' import slugify from 'slugify' +import markdownIt from 'markdown-it' import sanitizeHtml from 'sanitize-html'; + import { shuffleArray, sanitizeMediaString } from '../utilities/index.js' const BASE_URL = 'https://coryd.dev' @@ -94,7 +96,7 @@ export default { try { return (new URL(url, BASE_URL)).toString() } catch(e) { - console.log('Error generating absoluteUrl.') + console.error('Error generating absoluteUrl.') } return url; }, @@ -105,6 +107,7 @@ export default { entries.forEach((entry) => { const dateKey = Object.keys(entry).find((key) => key.includes('date')) const date = new Date(entry[dateKey]) + const md = markdownIt({ html: true, linkify: true }) let excerpt = '' let url = '' const feedNote = '
This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to visit my site for the original post.
' @@ -116,20 +119,20 @@ export default { // set the entry excerpt if (entry.description) excerpt = entry.description // general case - if (entry?.data?.description) excerpt = `${entry?.data?.description}