Sat Apr 12 2025
Tucker McKnight
Also get rid of the sample metadata.
599ce2dfba8c5e9a8a3645d5a2b6a53dba85f8c5
eleventyConfig.addFilter("rssDate", (dateString) => {
eleventyConfig.addFilter("dateForRss", (dateString) => {
metadata:
title: My Blog about Boats
description: I am writing about my experiences as a naval navel-gazer.
language: en
author:
name: Boaty McBoatFace
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ metadata.language or page.lang }}">
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ page.lang }}">
<updated>{{ lastPatch.date | rssDate }}</updated>
<updated>{{ lastPatch.date | dateForRss }}</updated>
<updated>{{ patch.date | rssDate }}</updated>
<updated>{{ patch.date | dateForRss }}</updated>
<content type="html">{{ patch.description | renderTransforms({}, metadata.base) }}</content>
<content type="html">{{ patch.description | renderTransforms({}, darcsConfig.baseUrl) }}</content>