export const title = 'My RSS feed'; export const description = 'This sure is a nice RSS feed'; export const site = 'https://example.com'; export const phpFeedItem = { link: '/php', title: 'Remember PHP?', pubDate: '1994-05-03', description: 'PHP is a general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1994.', }; export const phpFeedItemWithContent = { ...phpFeedItem, content: `
${phpFeedItem.description}
`, }; export const phpFeedItemWithCustomData = { ...phpFeedItem, customData: '${web1FeedItem.description}
`, };