all repos — homestead @ 437431b15173094ef9c9bc7261fe05dc7d439ebd

Code for my website

Fix tag URI in tagged feeds

Alan Pearce
commit

437431b15173094ef9c9bc7261fe05dc7d439ebd

parent

76eb796a63d080220d751f8dde2535dd3fcb86c7

1 file changed, 1 insertion(+), 1 deletion(-)

jump to
M src/templates.tssrc/templates.ts
@@ -246,7 +246,7 @@ tasks.push(async () => {
log.debug(`Rendering tag ${tag} feed to public/tags/${tag}/atom.xml`); return fs.writeFile( `public/tags/${tag}/atom.xml`, - await renderFeed(`${config.title} - ${tag}`, matchingPosts), + await renderFeed(`${config.title} - ${tag}`, matchingPosts, tag), ); }); }