mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-09-01 07:05:32 -04:00
generate permalinks when parsing note
This commit is contained in:
+2
-2
@@ -25,9 +25,9 @@ export const buildFeed = () => {
|
||||
const notes = getAllNotes();
|
||||
notes.forEach((note: any) => {
|
||||
feed.addItem({
|
||||
guid: note.permalink,
|
||||
link: note.permalink,
|
||||
title: note.title,
|
||||
link: `${config.baseUrl}/notes/${note.slug}/`,
|
||||
guid: `${config.baseUrl}/notes/${note.slug}/`,
|
||||
description: note.description,
|
||||
image: note.image ? `${config.baseUrl}${note.image}` : "",
|
||||
author: [
|
||||
|
||||
Reference in New Issue
Block a user