chore: plain text footnotes in full text feed

This commit is contained in:
Cory Dransfeldt 2024-06-29 13:31:35 -07:00
parent 7dd77a913e
commit 653035c7c8
No known key found for this signature in database
3 changed files with 37 additions and 25 deletions

View file

@ -80,24 +80,41 @@ export default {
// feeds
normalizeEntries: (entries) => {
const posts = []
entries.forEach((entry) => {
const dateKey = Object.keys(entry).find((key) => key.includes('date'))
const date = new Date(entry[dateKey])
const mdGenerator = () => {
const md = markdownIt({ html: true, linkify: true })
md.use(markdownItAnchor, {
level: [1, 2],
permalink: markdownItAnchor.permalink.headerLink({
safariReaderFix: true
})
})
md.use(markdownItFootnote)
md.renderer.rules.footnote_ref = (tokens, idx) => {
const id = tokens[idx].meta.id + 1
return `<sup>${id}</sup>`
}
md.renderer.rules.footnote_block_open = () => (
'<hr class="footnotes-sep">\n<section class="footnotes">\n<ol class="footnotes-list">\n'
)
md.renderer.rules.footnote_open = (tokens, idx) => {
const id = tokens[idx].meta.id + 1
return `<li id="fn${id}" class="footnote-item">${id}. `
}
md.renderer.rules.footnote_anchor = () => ''
return md
}
entries.forEach((entry) => {
const dateKey = Object.keys(entry).find(key => key.includes('date'))
const date = new Date(entry[dateKey])
const md = mdGenerator()
let excerpt = ''
let url = ''
let title = entry.title
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
md.use(markdownItAnchor, {
level: [1, 2],
permalink: markdownItAnchor.permalink.headerLink({
safariReaderFix: true,
}),
})
md.use(markdownItFootnote)
// set the 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?.slug) url = new URL(entry.slug, BASE_URL).toString()
@ -105,17 +122,12 @@ export default {
title = `${entry.title} via ${entry.authors.name}`
url = entry.link
}
// set the entry excerpt
if (entry.description) excerpt = entry.description // general case
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}<br/><br/>` // books
// send full post content to rss
if (entry.description) excerpt = entry.description
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}<br/><br/>`
if (entry?.slug && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, {
disallowedTagsMode: 'completelyDiscard'
})
// if there's a valid entry return a normalized object
if (entry) posts.push({
title: title.trim(),
url,

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "19.6.19",
"version": "19.7.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "19.6.19",
"version": "19.7.0",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "19.6.19",
"version": "19.7.0",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {